Home | History | Annotate | Download | only in Support

Lines Matching refs:hexDigits

526    significant nibble.  Write out exactly COUNT hexdigits, return
2697 HEXDIGITS digits appear altogether, rounding the value if
2698 necessary. If HEXDIGITS is 0, the minimal precision to display the
2715 APFloat::convertToHexString(char *dst, unsigned int hexDigits,
2739 if (hexDigits > 1) {
2741 memset (dst, '0', hexDigits - 1);
2742 dst += hexDigits - 1;
2749 dst = convertNormalToHexString (dst, hexDigits, upperCase, rounding_mode);
2760 hexadecimal digits. If HEXDIGITS is zero the minimum number of
2763 APFloat::convertNormalToHexString(char *dst, unsigned int hexDigits,
2791 /* hexDigits of zero means use the required number for the
2794 if (hexDigits) {
2795 if (hexDigits < outputDigits) {
2801 bits = valueBits - hexDigits * 4;
2805 outputDigits = hexDigits;
2827 /* Convert as much of "part" to hexdigits as we can. */