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

/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dbsd-snprintf.c719 double ufvalue; local
739 ufvalue = abs_val (fvalue);
757 if (max == 0) ufvalue += 0.5; /* if max = 0 we must round */
771 temp = ufvalue;
774 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
/freebsd-9.3-release/crypto/openssl/crypto/bio/
H A Db_print.c613 LDOUBLE ufvalue; local
627 ufvalue = abs_val(fvalue);
635 intpart = (long)ufvalue;
649 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
/freebsd-9.3-release/contrib/ntp/libntp/
H A Dsnprintf.c1095 LDOUBLE ufvalue; local
1199 ufvalue = (fvalue >= 0.0) ? fvalue : -fvalue;
1201 ufvalue /= mypow10(exponent);
1203 if ((intpart = cast(ufvalue)) == UINTMAX_MAX) {
1217 if ((fracpart = myround(mask * (ufvalue - intpart))) >= mask) {
1219 * For example, ufvalue = 2.99962, intpart = 2, and mask = 1000

Completed in 111 milliseconds