Home
last modified time | relevance | path

Searched refs:ufvalue (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/crypto/openssh/openbsd-compat/
Dbsd-snprintf.c707 double ufvalue; in fmtfp() local
727 ufvalue = abs_val (fvalue); in fmtfp()
745 if (max == 0) ufvalue += 0.5; /* if max = 0 we must round */ in fmtfp()
759 temp = ufvalue; in fmtfp()
762 fracpart = ROUND((POW10(max)) * (ufvalue - intpart)); in fmtfp()
/freebsd-12-stable/crypto/openssl/crypto/bio/
Db_print.c567 LDOUBLE ufvalue; in fmtfp() local
654 ufvalue = abs_val(fvalue); in fmtfp()
659 if (ufvalue >= (double)(ULONG_MAX - 65535) + 65536.0) { in fmtfp()
663 intpart = (unsigned long)ufvalue; in fmtfp()
677 fracpart = roundv(pow_10(max) * (ufvalue - intpart)); in fmtfp()
/freebsd-12-stable/contrib/ntp/libntp/
Dsnprintf.c1095 LDOUBLE ufvalue; in fmtflt() local
1199 ufvalue = (fvalue >= 0.0) ? fvalue : -fvalue; in fmtflt()
1201 ufvalue /= mypow10(exponent); in fmtflt()
1203 if ((intpart = cast(ufvalue)) == UINTMAX_MAX) { in fmtflt()
1217 if ((fracpart = myround(mask * (ufvalue - intpart))) >= mask) { in fmtflt()