Searched refs:radix (Results 1 – 1 of 1) sorted by relevance
91 int radix = base == 0 ? 10 : base; in strToI() local97 assert(radix >= 2 && radix <= 36); in strToI()107 radix = 16; in strToI()110 radix = 8; in strToI()116 if (radix <= 10) { in strToI()117 if (*string >= '0' && *string < '0' + radix) in strToI()122 else if (*string >= 'a' && *string < 'a' + radix - 10) in strToI()124 else if (*string >= 'A' && *string < 'A' + radix - 10) in strToI()129 result = radix*result + digit; in strToI()