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

  /external/chromium_org/third_party/libjingle/overrides/talk/base/
logging.cc 200 char hex_line[LINE_SIZE * 9 / 4 + 2], asc_line[LINE_SIZE + 1]; local
203 memset(hex_line, ' ', sizeof(hex_line));
208 hex_line[i*2 + i/4] = hex_encode(ch >> 4);
209 hex_line[i*2 + i/4 + 1] = hex_encode(ch & 0xf);
212 hex_line[sizeof(hex_line)-1] = 0;
214 << asc_line << " " << hex_line << " "; local
  /external/chromium/third_party/libjingle/source/talk/base/
logging.cc 517 char hex_line[LINE_SIZE * 9 / 4 + 2], asc_line[LINE_SIZE + 1]; local
520 memset(hex_line, ' ', sizeof(hex_line));
525 hex_line[i*2 + i/4] = hex_encode(ch >> 4);
526 hex_line[i*2 + i/4 + 1] = hex_encode(ch & 0xf);
529 hex_line[sizeof(hex_line)-1] = 0;
531 << asc_line << " " << hex_line << " "; local
  /external/chromium_org/third_party/libjingle/source/talk/base/
logging.cc 537 char hex_line[LINE_SIZE * 9 / 4 + 2], asc_line[LINE_SIZE + 1]; local
540 memset(hex_line, ' ', sizeof(hex_line));
545 hex_line[i*2 + i/4] = hex_encode(ch >> 4);
546 hex_line[i*2 + i/4 + 1] = hex_encode(ch & 0xf);
549 hex_line[sizeof(hex_line)-1] = 0;
551 << asc_line << " " << hex_line << " "; local
  /external/chromium_org/v8/tools/
grokdump.py 132 hex_line = ""
141 hex_line += " %02x" % (byte)
143 hex_line += " "
145 hex_line += " "
147 hex_line,
    [all...]

Completed in 47 milliseconds