Searched refs:hexDigits (Results 1 – 7 of 7) 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/chromium-trace/catapult/third_party/html5lib-python/html5lib/ |
D | constants.py | 472 hexDigits = frozenset(string.hexdigits) variable
|
D | tokenizer.py | 13 from .constants import digits, hexDigits, EOF 82 allowed = hexDigits 163 if (hex and charStack[-1] in hexDigits) \
|
/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/llvm/lib/Support/ |
D | APFloat.cpp | 2715 APFloat::convertToHexString(char *dst, unsigned int hexDigits, in convertToHexString() argument 2739 if (hexDigits > 1) { in convertToHexString() 2741 memset (dst, '0', hexDigits - 1); in convertToHexString() 2742 dst += hexDigits - 1; in convertToHexString() 2749 dst = convertNormalToHexString (dst, hexDigits, upperCase, rounding_mode); in convertToHexString() 2763 APFloat::convertNormalToHexString(char *dst, unsigned int hexDigits, in convertNormalToHexString() argument 2794 if (hexDigits) { in convertNormalToHexString() 2795 if (hexDigits < outputDigits) { in convertNormalToHexString() 2801 bits = valueBits - hexDigits * 4; in convertNormalToHexString() 2805 outputDigits = hexDigits; in convertNormalToHexString()
|
/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 | 392 unsigned int convertToHexString(char *dst, unsigned int hexDigits,
|