Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/lldb/source/Utility/
H A DStream.cpp251 static char g_hex_to_ascii_hex_char[16] = {'0', '1', '2', '3', '4', '5', in _PutHex8() local
255 nibble_chars[0] = g_hex_to_ascii_hex_char[(uvalue >> 4) & 0xf]; in _PutHex8()
256 nibble_chars[1] = g_hex_to_ascii_hex_char[(uvalue >> 0) & 0xf]; in _PutHex8()