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/wpa_supplicant_6/wpa_supplicant/src/wps/
H A Dhttpread.c141 static int hex_value(int c) function
304 *uri++ = (hex_value(rawuri[1]) << 4) |
305 hex_value(rawuri[2]);
/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.cpp2266 integerPart hex_value;
2276 hex_value = hexDigitValue(*p);
2277 if (hex_value == -1U) {
2289 hex_value <<= bitPos % integerPartWidth;
2290 significand[bitPos / integerPartWidth] |= hex_value;
2292 lost_fraction = trailingHexadecimalFraction(p, end, hex_value);

Completed in 85 milliseconds