Lines Matching refs:PUNYCODE_BASE
91 #define PUNYCODE_BASE 36
365 for (k = PUNYCODE_BASE - bias; len > 0; k += PUNYCODE_BASE) {
390 w *= (PUNYCODE_BASE - t);
402 for (k = PUNYCODE_BASE - bias; 1; k += PUNYCODE_BASE) {
410 *s++ = punycode_base36[t + ((delta - t) % (PUNYCODE_BASE - t))];
412 delta = (delta - t) / (PUNYCODE_BASE - t);
427 while (delta > ((PUNYCODE_BASE - PUNYCODE_TMIN) * PUNYCODE_TMAX) / 2) {
428 delta /= PUNYCODE_BASE - PUNYCODE_TMIN;
431 return (PUNYCODE_BASE * k +
432 (((PUNYCODE_BASE - PUNYCODE_TMIN + 1) * delta) /