Home
last modified time | relevance | path

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

/external/chromium/net/tools/dump_cache/
Durl_to_filename_encoder.cc216 uint64 hex_value = ParseLeadingHex64Value(hex_buffer, 0); in Decode() local
217 decoded_url->append(1, static_cast<char>(hex_value)); in Decode()
/external/webkit/Tools/mangleme/
DREADME17 remangle.cgi?hex_value from the browser again. If it crashes, you've reproduced
/external/wpa_supplicant_8/src/wps/
Dhttpread.c135 static int hex_value(int c) in hex_value() function
298 *uri++ = (hex_value(rawuri[1]) << 4) | in httpread_hdr_analyze()
299 hex_value(rawuri[2]); in httpread_hdr_analyze()
/external/wpa_supplicant_6/wpa_supplicant/src/wps/
Dhttpread.c141 static int hex_value(int c) in hex_value() function
304 *uri++ = (hex_value(rawuri[1]) << 4) | in httpread_hdr_analyze()
305 hex_value(rawuri[2]); in httpread_hdr_analyze()
/external/llvm/lib/Support/
DAPFloat.cpp2266 integerPart hex_value; in convertFromHexadecimalString() local
2276 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()