Searched defs:hex_line (Results 1 - 2 of 2) 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

Completed in 449 milliseconds