Lines Matching refs:BASE
62 #define BASE 36
89 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
110 * BASE-1, or -1 if b is does not represent a value.
172 for(count=0; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) {
173 delta/=(BASE-TMIN);
176 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW));
327 for(q=delta, k=BASE; /* no condition */; k+=BASE) {
351 dest[destLength]=digitToBasic(t+(q-t)%(BASE-t), 0);
354 q=(q-t)/(BASE-t);
450 for(oldi=i, w=1, k=BASE; /* no condition */; k+=BASE) {
486 if(w>0x7fffffff/(BASE-t)) {
491 w*=BASE-t;
515 /* if (decode_digit(n) <= BASE) return punycode_invalid_input; */