Home | History | Annotate | Download | only in common

Lines Matching defs:radix

30     int8_t radix = 10;
35 radix = 16;
40 radix = 8;
45 int32_t d = u_digit(rule.charAt(p++), radix);
51 int32_t v = (value * radix) + d;
178 * @param radix the radix in which to parse; must be >= 2 and <=
186 int32_t& pos, int8_t radix) {
188 // assert(radix >= 2);
189 // assert(radix <= 36);
194 int32_t d = u_digit(ch, radix);
198 n = radix*n + d;