Lines Matching refs:hexDigits
524 significant nibble. Write out exactly COUNT hexdigits, return
2645 HEXDIGITS digits appear altogether, rounding the value if
2646 necessary. If HEXDIGITS is 0, the minimal precision to display the
2663 APFloat::convertToHexString(char *dst, unsigned int hexDigits,
2687 if (hexDigits > 1) {
2689 memset (dst, '0', hexDigits - 1);
2690 dst += hexDigits - 1;
2697 dst = convertNormalToHexString (dst, hexDigits, upperCase, rounding_mode);
2708 hexadecimal digits. If HEXDIGITS is zero the minimum number of
2711 APFloat::convertNormalToHexString(char *dst, unsigned int hexDigits,
2739 /* hexDigits of zero means use the required number for the
2742 if (hexDigits) {
2743 if (hexDigits < outputDigits) {
2749 bits = valueBits - hexDigits * 4;
2753 outputDigits = hexDigits;
2775 /* Convert as much of "part" to hexdigits as we can. */