Home | History | Annotate | Download | only in common

Lines Matching refs:radix

28     int8_t radix = 10;
33 radix = 16;
38 radix = 8;
43 int32_t d = u_digit(rule.charAt(p++), radix);
49 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;