Searched refs:hex_char (Results 1 – 3 of 3) sorted by relevance
86 static char hex_char[] = "0123456789abcdef"; variable93 ret[i * 3 + 1] = hex_char[ptr[i] >> 4]; in PrintMemory()94 ret[i * 3 + 2] = hex_char[ptr[i] & 0xf]; in PrintMemory()
29 static char hex_char[] = "0123456789abcdef"; variable60 dest.push_back(hex_char[c / 64]); in CEscape()61 dest.push_back(hex_char[(c % 64) / 8]); in CEscape()62 dest.push_back(hex_char[c % 8]); in CEscape()
97 char hex_char = 0x80; in test9() local