Lines Matching refs:punycode_uint
55 #define basic(cp) ((punycode_uint)(cp) < 0x80)
65 static punycode_uint decode_digit(punycode_uint cp) in decode_digit()
68 cp - 97 < 26 ? cp - 97 : static_cast<punycode_uint>(base); in decode_digit()
77 static char encode_digit(punycode_uint d, int flag) in encode_digit()
88 #define flagged(bcp) ((punycode_uint)(bcp) - 65 < 26)
96 static char encode_basic(punycode_uint bcp, int flag) in encode_basic()
105 static const punycode_uint maxint = (punycode_uint) (-1);
110 static punycode_uint adapt( in adapt()
111 punycode_uint delta, punycode_uint numpoints, int firsttime ) in adapt()
113 punycode_uint k; in adapt()
129 punycode_uint input_length, in punycode_encode()
130 const punycode_uint input[], in punycode_encode()
132 punycode_uint *output_length, in punycode_encode()
135 punycode_uint n, delta, h, b, out, max_out, bias, j, m, q, k, t; in punycode_encode()
194 t = k <= bias /* + tmin */ ? static_cast<punycode_uint>(tmin) : /* +tmin not needed */ in punycode_encode()
195 k >= bias + tmax ? static_cast<punycode_uint>(tmax) : k - bias; in punycode_encode()
218 punycode_uint input_length, in punycode_decode()
220 punycode_uint *output_length, in punycode_decode()
221 punycode_uint output[], in punycode_decode()
224 punycode_uint n, out, i, max_out, bias, in punycode_decode()
266 t = k <= bias /* + tmin */ ? static_cast<punycode_uint>(tmin) : /* +tmin not needed */ in punycode_decode()
267 k >= bias + tmax ? static_cast<punycode_uint>(tmax) : k - bias; in punycode_decode()