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

  /external/protobuf/src/google/protobuf/util/internal/
json_escaping.cc 44 static const char kHex[] = "0123456789abcdef";
251 buffer[5] = kHex[cp & 0x0f];
253 buffer[4] = kHex[cp & 0x0f];
255 buffer[3] = kHex[cp & 0x0f];
257 buffer[2] = kHex[cp & 0x0f];
268 buffer[11] = kHex[low & 0x0f];
270 buffer[10] = kHex[low & 0x0f];
272 buffer[9] = kHex[low & 0x0f];
274 buffer[8] = kHex[low & 0x0f];
276 buffer[5] = kHex[high & 0x0f]
    [all...]
  /external/webrtc/webrtc/base/
helpers.cc 177 static const char kHex[16] = {'0', '1', '2', '3', '4', '5', '6', '7',
260 str.push_back(kHex[bytes[i] % 16]);
264 str.push_back(kHex[bytes[i] % 16]);
269 str.push_back(kHex[bytes[i] % 16]);
274 str.push_back(kHex[bytes[i] % 16]);
278 str.push_back(kHex[bytes[i] % 16]);
  /external/skia/src/pdf/
SkPDFTypes.cpp 103 static const char kHex[] = "0123456789ABCDEF";
107 buffer[1] = kHex[(*n >> 4) & 0xF];
108 buffer[2] = kHex[*n & 0xF];

Completed in 231 milliseconds