Home
last modified time | relevance | path

Searched refs:hex_to_uint (Results 1 – 5 of 5) sorted by relevance

/third_party/nghttp2/src/
Dutil.h103 uint32_t hex_to_uint(char c);
122 *p++ = (hex_to_uint(*(first + 1)) << 4) + hex_to_uint(*(first + 2)); in percent_decode()
217 *d_first++ = (hex_to_uint(*it) << 4) | hex_to_uint(*(it + 1)); in decode_hex()
Dhttp2.cc1812 (util::hex_to_uint(*(it + 1)) << 4) + util::hex_to_uint(*(it + 2)); in normalize_path()
1859 (util::hex_to_uint(*(it + 1)) << 4) + util::hex_to_uint(*(it + 2)); in normalize_path_colon()
Dutil.cc179 uint32_t hex_to_uint(char c) { in hex_to_uint() function
1459 *p++ = (hex_to_uint(*(first + 1)) << 4) + hex_to_uint(*(first + 2)); in percent_decode()
Dshrpx_downstream.cc382 auto n = util::hex_to_uint(c); in find_affinity_cookie()
/third_party/nghttp2/examples/
Dlibevent-server.c359 static uint8_t hex_to_uint(uint8_t c) { in hex_to_uint() function
389 (char)((hex_to_uint(value[i + 1]) << 4) + hex_to_uint(value[i + 2])); in percent_decode()