Lines Matching defs:BASE
64 #define BASE 36
91 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
111 * in the range 0 to BASE-1, or a negative value if cp is invalid.
164 for(count=0; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) {
165 delta/=(BASE-TMIN);
168 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW));
325 for(q=delta, k=BASE; /* no condition */; k+=BASE) {
349 dest[destLength]=digitToBasic(t+(q-t)%(BASE-t), 0);
352 q=(q-t)/(BASE-t);
453 for(oldi=i, w=1, k=BASE; /* no condition */; k+=BASE) {
489 if(w>0x7fffffff/(BASE-t)) {
494 w*=BASE-t;
518 /* if (decode_digit(n) <= BASE) return punycode_invalid_input; */