Searched refs:nibble_chars (Results 1 – 1 of 1) sorted by relevance
227 char nibble_chars[2]; in _PutHex8() local228 nibble_chars[0] = g_hex_to_ascii_hex_char[(uvalue >> 4) & 0xf]; in _PutHex8()229 nibble_chars[1] = g_hex_to_ascii_hex_char[(uvalue >> 0) & 0xf]; in _PutHex8()230 Write(nibble_chars, sizeof(nibble_chars)); in _PutHex8()