Lines Matching refs:hexDigits
536 significant nibble. Write out exactly COUNT hexdigits, return
2514 HEXDIGITS digits appear altogether, rounding the value if
2515 necessary. If HEXDIGITS is 0, the minimal precision to display the
2532 APFloat::convertToHexString(char *dst, unsigned int hexDigits,
2558 if (hexDigits > 1) {
2560 memset (dst, '0', hexDigits - 1);
2561 dst += hexDigits - 1;
2568 dst = convertNormalToHexString (dst, hexDigits, upperCase, rounding_mode);
2579 hexadecimal digits. If HEXDIGITS is zero the minimum number of
2582 APFloat::convertNormalToHexString(char *dst, unsigned int hexDigits,
2610 /* hexDigits of zero means use the required number for the
2613 if (hexDigits) {
2614 if (hexDigits < outputDigits) {
2620 bits = valueBits - hexDigits * 4;
2624 outputDigits = hexDigits;
2646 /* Convert as much of "part" to hexdigits as we can. */