Searched refs:hex_to_uint (Results 1 – 5 of 5) sorted by relevance
107 uint32_t hex_to_uint(char c);126 *p++ = (hex_to_uint(*(first + 1)) << 4) + hex_to_uint(*(first + 2)); in percent_decode()221 *d_first++ = (hex_to_uint(*it) << 4) | hex_to_uint(*(it + 1)); in decode_hex()
1839 (util::hex_to_uint(*(it + 1)) << 4) + util::hex_to_uint(*(it + 2)); in normalize_path()1886 (util::hex_to_uint(*(it + 1)) << 4) + util::hex_to_uint(*(it + 2)); in normalize_path_colon()
221 uint32_t hex_to_uint(char c) { in hex_to_uint() function1501 *p++ = (hex_to_uint(*(first + 1)) << 4) + hex_to_uint(*(first + 2)); in percent_decode()
382 auto n = util::hex_to_uint(c); in find_affinity_cookie()
359 static uint8_t hex_to_uint(uint8_t c) { in hex_to_uint() function389 (char)((hex_to_uint(value[i + 1]) << 4) + hex_to_uint(value[i + 2])); in percent_decode()