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

  /external/webrtc/webrtc/base/
logging.cc 461 char hex_line[LINE_SIZE * 9 / 4 + 2], asc_line[LINE_SIZE + 1]; local
464 memset(hex_line, ' ', sizeof(hex_line));
469 hex_line[i*2 + i/4] = hex_encode(ch >> 4);
470 hex_line[i*2 + i/4 + 1] = hex_encode(ch & 0xf);
473 hex_line[sizeof(hex_line)-1] = 0;
475 << asc_line << " " << hex_line << " "; local
  /external/v8/tools/
grokdump.py 141 hex_line = ""
150 hex_line += " %02x" % (byte)
152 hex_line += " "
154 hex_line += " "
156 hex_line,
    [all...]

Completed in 300 milliseconds