Searched refs:nibble_chars (Results 1 – 1 of 1) sorted by relevance
231 char nibble_chars[2]; in _PutHex8() local232 nibble_chars[0] = g_hex_to_ascii_hex_char[(uvalue >> 4) & 0xf]; in _PutHex8()233 nibble_chars[1] = g_hex_to_ascii_hex_char[(uvalue >> 0) & 0xf]; in _PutHex8()234 Write(nibble_chars, sizeof(nibble_chars)); in _PutHex8()