Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/digest/
H A Dpackage.d712 import std.ascii : hexDigits = hexDigits;
716 import std.ascii : hexDigits = lowerHexDigits;
727 result[i++] = hexDigits[u >> 4];
728 result[i++] = hexDigits[u & 15];
736 result[i++] = hexDigits[digest[j] >> 4];
737 result[i++] = hexDigits[digest[j] & 15];
756 import std.ascii : hexDigits = hexDigits;
760 import std.ascii : hexDigits = lowerHexDigits;
770 result[i++] = hexDigits[u >> 4];
771 result[i++] = hexDigits[u & 15];
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/digest/
H A Dpackage.d858 import std.ascii : hexDigits = hexDigits;
862 import std.ascii : hexDigits = lowerHexDigits;
870 hexBuffer[i++] = hexDigits[u >> 4];
871 hexBuffer[i++] = hexDigits[u & 15];
879 hexBuffer[i++] = hexDigits[byteBuffer[j] >> 4];
880 hexBuffer[i++] = hexDigits[byteBuffer[j] & 15];
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPFloat.cpp2937 unsigned int IEEEFloat::convertToHexString(char *dst, unsigned int hexDigits, in convertToHexString() argument
2961 if (hexDigits > 1) { in convertToHexString()
2963 memset (dst, '0', hexDigits - 1); in convertToHexString()
2964 dst += hexDigits - 1; in convertToHexString()
2971 dst = convertNormalToHexString (dst, hexDigits, upperCase, rounding_mode); in convertToHexString()
2984 char *IEEEFloat::convertNormalToHexString(char *dst, unsigned int hexDigits, in convertNormalToHexString() argument
3014 if (hexDigits) { in convertNormalToHexString()
3015 if (hexDigits < outputDigits) { in convertNormalToHexString()
3021 bits = valueBits - hexDigits * 4; in convertNormalToHexString()
3025 outputDigits = hexDigits; in convertNormalToHexString()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DAPFloat.h330 unsigned int convertToHexString(char *dst, unsigned int hexDigits,
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Ddoc.d3613 immutable static hexDigits = "0123456789ABCDEF"; in inout() local
3614 immutable encoded1 = hexDigits[s[i] >> 4]; in inout()
3615 immutable encoded2 = hexDigits[s[i] & 0x0F]; in inout()