HomeSort by relevance Sort by last modified time
    Searched refs:hex_rep (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/MC/
MCInstPrinter.cpp 20 static const char hex_rep[] = "0123456789abcdef"; local
22 OS << hex_rep[(i & 0xF0) >> 4]; local
23 OS << hex_rep[i & 0xF]; local
  /external/swiftshader/third_party/LLVM/tools/llvm-objdump/
llvm-objdump.cpp 122 static const char hex_rep[] = "0123456789abcdef"; local
138 output[index] = hex_rep[(*i & 0xF0) >> 4];
139 output[index + 1] = hex_rep[*i & 0xF];

Completed in 99 milliseconds