Searched refs:hex_line (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/webrtc/overrides/webrtc/base/
H A Dlogging.cc197 char hex_line[LINE_SIZE * 9 / 4 + 2], asc_line[LINE_SIZE + 1]; local
200 memset(hex_line, ' ', sizeof(hex_line));
205 hex_line[i*2 + i/4] = hex_encode(ch >> 4);
206 hex_line[i*2 + i/4 + 1] = hex_encode(ch & 0xf);
209 hex_line[sizeof(hex_line)-1] = 0;
211 << asc_line << " " << hex_line << " "; local
/external/chromium_org/third_party/webrtc/base/
H A Dlogging.cc523 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/
H A Dgrokdump.py139 hex_line = ""
148 hex_line += " %02x" % (byte)
150 hex_line += " "
152 hex_line += " "
154 hex_line,

Completed in 443 milliseconds