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

  /external/chromium_org/third_party/libjingle/overrides/talk/base/
logging.cc 186 char hex_line[LINE_SIZE * 9 / 4 + 2], asc_line[LINE_SIZE + 1]; local
189 memset(hex_line, ' ', sizeof(hex_line));
194 hex_line[i*2 + i/4] = hex_encode(ch >> 4);
195 hex_line[i*2 + i/4 + 1] = hex_encode(ch & 0xf);
198 hex_line[sizeof(hex_line)-1] = 0;
200 << asc_line << " " << hex_line << " "; local
  /external/chromium_org/third_party/webrtc/overrides/webrtc/base/
logging.cc 192 char hex_line[LINE_SIZE * 9 / 4 + 2], asc_line[LINE_SIZE + 1]; local
195 memset(hex_line, ' ', sizeof(hex_line));
200 hex_line[i*2 + i/4] = hex_encode(ch >> 4);
201 hex_line[i*2 + i/4 + 1] = hex_encode(ch & 0xf);
204 hex_line[sizeof(hex_line)-1] = 0;
206 << asc_line << " " << hex_line << " "; local
  /external/chromium_org/third_party/libjingle/source/talk/base/
logging.cc 540 char hex_line[LINE_SIZE * 9 / 4 + 2], asc_line[LINE_SIZE + 1]; local
543 memset(hex_line, ' ', sizeof(hex_line));
548 hex_line[i*2 + i/4] = hex_encode(ch >> 4);
549 hex_line[i*2 + i/4 + 1] = hex_encode(ch & 0xf);
552 hex_line[sizeof(hex_line)-1] = 0;
554 << asc_line << " " << hex_line << " "; local
  /external/chromium_org/third_party/webrtc/base/
logging.cc 523 char hex_line[LINE_SIZE * 9 / 4 + 2], asc_line[LINE_SIZE + 1]; local
526 memset(hex_line, ' ', sizeof(hex_line));
531 hex_line[i*2 + i/4] = hex_encode(ch >> 4);
532 hex_line[i*2 + i/4 + 1] = hex_encode(ch & 0xf);
535 hex_line[sizeof(hex_line)-1] = 0;
537 << asc_line << " " << hex_line << " "; local
  /external/chromium_org/v8/tools/
grokdump.py 139 hex_line = ""
148 hex_line += " %02x" % (byte)
150 hex_line += " "
152 hex_line += " "
154 hex_line,
    [all...]

Completed in 568 milliseconds