Home
last modified time | relevance | path

Searched refs:hex_char (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/core/util/
Dutil.cc86 static char hex_char[] = "0123456789abcdef"; variable
93 ret[i * 3 + 1] = hex_char[ptr[i] >> 4]; in PrintMemory()
94 ret[i * 3 + 2] = hex_char[ptr[i] & 0xf]; in PrintMemory()
/external/tensorflow/tensorflow/core/lib/strings/
Dstr_util.cc29 static char hex_char[] = "0123456789abcdef"; variable
60 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()
/external/clang/test/Sema/
Dconstant-conversion.c97 char hex_char = 0x80; in test9() local