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

/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DStream.cpp227 char nibble_chars[2]; local
228 nibble_chars[0] = g_hex_to_ascii_hex_char[(uvalue >> 4) & 0xf];
229 nibble_chars[1] = g_hex_to_ascii_hex_char[(uvalue >> 0) & 0xf];
230 Write(nibble_chars, sizeof(nibble_chars));

Completed in 105 milliseconds