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

  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 227 static const char hex_rep[] = "0123456789abcdef"; local
243 output[index] = hex_rep[(*i & 0xF0) >> 4];
244 output[index + 1] = hex_rep[*i & 0xF];

Completed in 82 milliseconds