Searched refs:byte_data (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dtest_font_utils.h37 void HexDump(const unsigned char* byte_data, size_t length);
H A Dtest_font_utils.cc99 void HexDump(const unsigned char* byte_data, size_t length) { argument
100 if (byte_data == NULL || length == 0) {
107 fprintf(stderr, "%02x ", byte_data[i]);
/external/sfntly/cpp/src/test/
H A Dtest_font_utils.h37 void HexDump(const unsigned char* byte_data, size_t length);
H A Dtest_font_utils.cc99 void HexDump(const unsigned char* byte_data, size_t length) { argument
100 if (byte_data == NULL || length == 0) {
107 fprintf(stderr, "%02x ", byte_data[i]);
/external/chromium_org/third_party/webrtc/base/
H A Dbase64.cc103 const unsigned char* byte_data = static_cast<const unsigned char*>(data); local
109 c = (byte_data[i] >> 2) & 0x3f;
112 c = (byte_data[i] << 4) & 0x3f;
114 c |= (byte_data[i] >> 4) & 0x0f;
119 c = (byte_data[i] << 2) & 0x3f;
121 c |= (byte_data[i] >> 6) & 0x03;
129 c = byte_data[i] & 0x3f;
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DMain.py314 byte_data = f.read()
319 for idx, c in enumerate(byte_data):

Completed in 2052 milliseconds