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

/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/lldb/source/Interpreter/
H A DArgs.cpp1728 unsigned long hex_value = strtoul (hex_str, NULL, 16);
1729 if (hex_value <= UINT8_MAX)
1730 dst.append (1, (char)hex_value);
/external/lldb/source/Core/
H A DDebugger.cpp2574 unsigned long hex_value = strtoul (hex_str, NULL, 16); local
2575 if (hex_value <= UINT8_MAX)
2576 s.PutChar ((char)hex_value);
/external/llvm/lib/Support/
H A DAPFloat.cpp2344 integerPart hex_value;
2352 hex_value = hexDigitValue(*p);
2353 if (hex_value == -1U)
2361 hex_value <<= bitPos % integerPartWidth;
2362 significand[bitPos / integerPartWidth] |= hex_value;
2364 lost_fraction = trailingHexadecimalFraction(p, end, hex_value);

Completed in 182 milliseconds