Lines Matching defs:digit
65 * code points digit-values
102 * let digit = the code point's digit-value, fail if it has none
103 * let i = i + digit * w, fail on overflow
106 * if digit < t then break
152 int digit;
158 digit = digit_decoded(pEncoded[loop]);
161 if (digit < 0)
163 if ((unsigned int)digit > (maxint - i) / w)
166 i = i + digit * w;
169 if ((unsigned int)digit < t)