Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/hash/
DHashCode.java399 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/
Dconstants.py472 hexDigits = frozenset(string.hexdigits) variable
Dtokenizer.py13 from .constants import digits, hexDigits, EOF
82 allowed = hexDigits
163 if (hex and charStack[-1] in hexDigits) \
/external/deqp/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()
/external/llvm/lib/Support/
DAPFloat.cpp2715 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/
DProxyFactory.java435 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/
DAPFloat.h392 unsigned int convertToHexString(char *dst, unsigned int hexDigits,