Searched refs:hex_value (Results 1 - 6 of 6) sorted by relevance

/external/chromium/net/tools/dump_cache/
H A Durl_to_filename_encoder.cc216 uint64 hex_value = ParseLeadingHex64Value(hex_buffer, 0); local
217 decoded_url->append(1, static_cast<char>(hex_value));
/external/chromium_org/net/tools/dump_cache/
H A Durl_to_filename_encoder.cc215 uint64 hex_value = ParseLeadingHex64Value(hex_buffer, 0); local
216 decoded_url->append(1, static_cast<char>(hex_value));
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dhttpread.c135 static int hex_value(int c) function
298 *uri++ = (hex_value(rawuri[1]) << 4) |
299 hex_value(rawuri[2]);
/external/wpa_supplicant_8/src/wps/
H A Dhttpread.c135 static int hex_value(int c) function
298 *uri++ = (hex_value(rawuri[1]) << 4) |
299 hex_value(rawuri[2]);
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dhttpread.c135 static int hex_value(int c) function
298 *uri++ = (hex_value(rawuri[1]) << 4) |
299 hex_value(rawuri[2]);
/external/llvm/lib/Support/
H A DAPFloat.cpp2324 integerPart hex_value;
2332 hex_value = hexDigitValue(*p);
2333 if (hex_value == -1U)
2341 hex_value <<= bitPos % integerPartWidth;
2342 significand[bitPos / integerPartWidth] |= hex_value;
2344 lost_fraction = trailingHexadecimalFraction(p, end, hex_value);

Completed in 163 milliseconds