Home | History | Annotate | Download | only in common

Lines Matching refs:BASE

59 #define BASE            36
86 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
107 * BASE-1, or -1 if b is does not represent a value.
169 for(count=0; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) {
170 delta/=(BASE-TMIN);
173 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW));
324 for(q=delta, k=BASE; /* no condition */; k+=BASE) {
348 dest[destLength]=digitToBasic(t+(q-t)%(BASE-t), 0);
351 q=(q-t)/(BASE-t);
446 for(oldi=i, w=1, k=BASE; /* no condition */; k+=BASE) {
482 if(w>0x7fffffff/(BASE-t)) {
487 w*=BASE-t;
511 /* if (decode_digit(n) <= BASE) return punycode_invalid_input; */