Searched refs:hex_value (Results 1 – 5 of 5) sorted by relevance
216 uint64 hex_value = ParseLeadingHex64Value(hex_buffer, 0); in Decode() local217 decoded_url->append(1, static_cast<char>(hex_value)); in Decode()
17 remangle.cgi?hex_value from the browser again. If it crashes, you've reproduced
135 static int hex_value(int c) in hex_value() function298 *uri++ = (hex_value(rawuri[1]) << 4) | in httpread_hdr_analyze()299 hex_value(rawuri[2]); in httpread_hdr_analyze()
141 static int hex_value(int c) in hex_value() function304 *uri++ = (hex_value(rawuri[1]) << 4) | in httpread_hdr_analyze()305 hex_value(rawuri[2]); in httpread_hdr_analyze()
2266 integerPart hex_value; in convertFromHexadecimalString() local2276 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()2277 if (hex_value == -1U) { in convertFromHexadecimalString()2289 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString()2290 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()2292 lost_fraction = trailingHexadecimalFraction(p, end, hex_value); in convertFromHexadecimalString()