Home
last modified time | relevance | path

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

/trueos/contrib/llvm/tools/llvm-objdump/
HDllvm-objdump.cpp236 static const char hex_rep[] = "0123456789abcdef"; in DumpBytes() local
252 output[index] = hex_rep[(*i & 0xF0) >> 4]; in DumpBytes()
253 output[index + 1] = hex_rep[*i & 0xF]; in DumpBytes()