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

  /external/skia/src/pdf/
SkPDFUtils.h 81 static const char gHex[] = "0123456789ABCDEF";
83 result[0] = gHex[ value >> 12 ];
84 result[1] = gHex[0xF & (value >> 8 )];
85 result[2] = gHex[0xF & (value >> 4 )];
86 result[3] = gHex[0xF & (value )];
90 static const char gHex[] = "0123456789ABCDEF";
92 result[0] = gHex[value >> 4 ];
93 result[1] = gHex[0xF & value];
SkPDFMetadata.cpp 132 static const char gHex[] = "0123456789abcdef";
133 SkASSERT(strlen(gHex) == 16);
136 HEXIFY(data, ptr, gHex, 4);
138 HEXIFY(data, ptr, gHex, 2);
140 HEXIFY(data, ptr, gHex, 2);
142 HEXIFY(data, ptr, gHex, 2);
144 HEXIFY(data, ptr, gHex, 6);
SkPDFUtils.cpp 482 static const char gHex[] = "0123456789ABCDEF";
484 hexValue[0] = gHex[(c >> 4) & 0xF];
485 hexValue[1] = gHex[ c & 0xF];
  /external/skia/src/core/
SkString.cpp 542 static const char gHex[] = "0123456789ABCDEF";
548 *--p = gHex[hex & 0xF];

Completed in 1978 milliseconds