Home
last modified time | relevance | path

Searched refs:UPPER_XDIGITS (Results 1 – 2 of 2) sorted by relevance

/third_party/nghttp2/src/
Dutil.cc101 const char UPPER_XDIGITS[] = "0123456789ABCDEF"; variable
126 dest += UPPER_XDIGITS[c >> 4]; in percent_encode()
127 dest += UPPER_XDIGITS[(c & 0x0f)]; in percent_encode()
148 dest += UPPER_XDIGITS[(c >> 4) & 0x0f]; in percent_encode_path()
149 dest += UPPER_XDIGITS[(c & 0x0f)]; in percent_encode_path()
181 *p++ = UPPER_XDIGITS[c >> 4]; in percent_encode_token()
182 *p++ = UPPER_XDIGITS[(c & 0x0f)]; in percent_encode_token()
Dutil.h446 extern const char UPPER_XDIGITS[];
461 res[i] = UPPER_XDIGITS[(n & 0x0f)]; in utox()