Searched refs:nibble_chars (Results 1 – 1 of 1) sorted by relevance
537 char nibble_chars[2]; in _PutHex8() local538 nibble_chars[0] = g_hex_to_ascii_hex_char[(uvalue >> 4) & 0xf]; in _PutHex8()539 nibble_chars[1] = g_hex_to_ascii_hex_char[(uvalue >> 0) & 0xf]; in _PutHex8()540 bytes_written = Write (nibble_chars, sizeof(nibble_chars)); in _PutHex8()