Home
last modified time | relevance | path

Searched refs:hexDigits (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/
Dtokenize.js51 var hexDigits = 0;
55 hexDigits++;
57 } while (hex[code] && hexDigits < 6);
59 if (hexDigits < 6 && code === t.space) {
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fASTCDecompressionCases.cpp97 static const char* const hexDigits = "0123456789ABCDEF"; in astcBlockDataStr() local
106 result += hexDigits[(data[i] & 0xf0) >> 4]; in astcBlockDataStr()
108 result += hexDigits[(data[i] & 0x0f) >> 0]; in astcBlockDataStr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPFloat.cpp2701 unsigned int IEEEFloat::convertToHexString(char *dst, unsigned int hexDigits, in convertToHexString() argument
2725 if (hexDigits > 1) { in convertToHexString()
2727 memset (dst, '0', hexDigits - 1); in convertToHexString()
2728 dst += hexDigits - 1; in convertToHexString()
2735 dst = convertNormalToHexString (dst, hexDigits, upperCase, rounding_mode); in convertToHexString()
2748 char *IEEEFloat::convertNormalToHexString(char *dst, unsigned int hexDigits, in convertNormalToHexString() argument
2778 if (hexDigits) { in convertNormalToHexString()
2779 if (hexDigits < outputDigits) { in convertNormalToHexString()
2785 bits = valueBits - hexDigits * 4; in convertNormalToHexString()
2789 outputDigits = hexDigits; in convertNormalToHexString()
/third_party/node/tools/inspector_protocol/lib/
DValues_cpp.template39 const char hexDigits[17] = "0123456789ABCDEF";
45 uint16_t c = hexDigits[(number & 0xF000) >> 12];
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPFloat.h342 unsigned int convertToHexString(char *dst, unsigned int hexDigits,
/third_party/protobuf/java/lite/src/test/java/com/google/protobuf/
DLiteTest.java2446 String hexDigits = "0123456789abcdef"; in encodeHex() local
2449 stringBuilder.append(hexDigits.charAt((b & 0xf0) >> 4)); in encodeHex()
2450 stringBuilder.append(hexDigits.charAt(b & 0x0f)); in encodeHex()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPFloat.h325 unsigned int convertToHexString(char *dst, unsigned int hexDigits,