Lines Matching defs:bias
100 int bias, unsigned long *vp);
102 unsigned long delta, int bias);
114 int first, bias;
153 bias = PUNYCODE_INITIAL_BIAS;
161 len = punycode_getwc(from + fidx, fromlen - fidx, bias, &delta);
168 bias = punycode_update_bias(delta, ucslen + 1, first);
214 int uidx, bias, first;
288 bias = PUNYCODE_INITIAL_BIAS;
321 int sz = punycode_putwc(to, tolen, delta, bias);
329 bias = punycode_update_bias(delta, ucsdone,
360 punycode_getwc(const char *s, size_t len, int bias, unsigned long *vp) {
365 for (k = PUNYCODE_BASE - bias; len > 0; k += PUNYCODE_BASE) {
397 punycode_putwc(char *s, size_t len, unsigned long delta, int bias) {
402 for (k = PUNYCODE_BASE - bias; 1; k += PUNYCODE_BASE) {