Searched refs:fracpart (Results 1 - 5 of 5) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/
H A Dsnprintf.c657 LLONG fracpart; local
735 fracpart = round_int (mask10 * (ufvalue - intpart));
737 if (fracpart >= mask10)
740 fracpart -= mask10;
742 else if (fracpart != 0)
743 /* If fracpart has less digits than the 10* mask, we need to
746 while (fracpart < mask10 / 10)
753 dprint (1, (debugfile, "fmtfp: %f =? %d.%d\n", fvalue, intpart, fracpart));
766 fconvert[fplace++] = '0' + fracpart % 10;
767 fracpart
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/bio/
H A Db_print.c621 long fracpart; local
644 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
646 if (fracpart >= max10) {
648 fracpart -= max10;
666 : "0123456789abcdef")[fracpart % 10];
667 fracpart = (fracpart / 10);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/bio/
H A Db_print.c621 long fracpart; local
648 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
650 if (fracpart >= max10) {
652 fracpart -= max10;
666 fconvert[fplace++] = "0123456789"[fracpart % 10];
667 fracpart = (fracpart / 10);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/bio/
H A Db_print.c621 long fracpart; local
648 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
650 if (fracpart >= max10) {
652 fracpart -= max10;
666 fconvert[fplace++] = "0123456789"[fracpart % 10];
667 fracpart = (fracpart / 10);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/replace/
H A Dsnprintf.c964 double fracpart; local
1009 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
1011 if (fracpart >= POW10(max)) {
1013 fracpart -= POW10(max);
1031 if (fracpart)
1034 temp = fracpart*0.1;
1035 my_modf(temp, &fracpart);
1036 idx = (int) ((temp -fracpart +0.05)* 10.0);
1037 /* idx = (int) ((((temp/10) -fracpart) +0.05) *10); */
1038 /* printf ("%lf, %lf, %ld\n", temp, fracpart, id
[all...]

Completed in 103 milliseconds