Searched refs:hexDigits (Results 1 – 9 of 9) sorted by relevance
/external/guava/guava/src/com/google/common/hash/ |
D | HashCode.java | 399 sb.append(hexDigits[(b >> 4) & 0xf]).append(hexDigits[b & 0xf]); in toString() 404 private static final char[] hexDigits = "0123456789abcdef".toCharArray(); field in HashCode
|
/external/deqp/modules/gles3/functional/ |
D | es3fASTCDecompressionCases.cpp | 97 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()
|
/external/v8/src/inspector/ |
D | v8-debugger-script.cc | 15 const char hexDigits[17] = "0123456789ABCDEF"; variable 19 UChar c = hexDigits[number & 0xF]; in appendUnsignedAsHex()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | APFloat.cpp | 2545 APFloat::convertToHexString(char *dst, unsigned int hexDigits, in convertToHexString() argument 2571 if (hexDigits > 1) { in convertToHexString() 2573 memset (dst, '0', hexDigits - 1); in convertToHexString() 2574 dst += hexDigits - 1; in convertToHexString() 2581 dst = convertNormalToHexString (dst, hexDigits, upperCase, rounding_mode); in convertToHexString() 2595 APFloat::convertNormalToHexString(char *dst, unsigned int hexDigits, in convertNormalToHexString() argument 2626 if (hexDigits) { in convertNormalToHexString() 2627 if (hexDigits < outputDigits) { in convertNormalToHexString() 2633 bits = valueBits - hexDigits * 4; in convertNormalToHexString() 2637 outputDigits = hexDigits; in convertNormalToHexString()
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 2718 APFloat::convertToHexString(char *dst, unsigned int hexDigits, in convertToHexString() argument 2742 if (hexDigits > 1) { in convertToHexString() 2744 memset (dst, '0', hexDigits - 1); in convertToHexString() 2745 dst += hexDigits - 1; in convertToHexString() 2752 dst = convertNormalToHexString (dst, hexDigits, upperCase, rounding_mode); in convertToHexString() 2766 APFloat::convertNormalToHexString(char *dst, unsigned int hexDigits, in convertNormalToHexString() argument 2797 if (hexDigits) { in convertNormalToHexString() 2798 if (hexDigits < outputDigits) { in convertNormalToHexString() 2804 bits = valueBits - hexDigits * 4; in convertNormalToHexString() 2808 outputDigits = hexDigits; in convertNormalToHexString()
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | APFloat.h | 315 unsigned int convertToHexString(char *dst, unsigned int hexDigits,
|
/external/javassist/src/main/javassist/util/proxy/ |
D | ProxyFactory.java | 435 private static char[] hexDigits = field in ProxyFactory 454 sbuf.append(hexDigits[lo]); in getKey() 455 sbuf.append(hexDigits[hi]); in getKey()
|
/external/llvm/include/llvm/ADT/ |
D | APFloat.h | 394 unsigned int convertToHexString(char *dst, unsigned int hexDigits,
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | APFloat.h | 342 unsigned int convertToHexString(char *dst, unsigned int hexDigits,
|