Searched defs:intpart (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/openssl/openssl/crypto/bio/
H A Db_print.c592 long intpart; local
593 intpart = (long) value;
594 value = value - intpart;
596 intpart++;
597 return intpart;
620 long intpart; local
634 intpart = (long)ufvalue;
644 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
647 intpart++;
655 : "0123456789abcdef")[intpart
[all...]
/external/openssh/openbsd-compat/
H A Dbsd-snprintf.c624 LLONG intpart; local
626 intpart = (LLONG)value;
627 value = value - intpart;
628 if (value >= 0.5) intpart++;
630 return intpart;
686 double intpart; local
730 my_modf(temp, &intpart);
732 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
735 intpart++;
741 temp = intpart*0.
[all...]
/external/openssl/crypto/bio/
H A Db_print.c592 long intpart; local
593 intpart = (long) value;
594 value = value - intpart;
596 intpart++;
597 return intpart;
620 long intpart; local
634 intpart = (long)ufvalue;
644 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
647 intpart++;
655 : "0123456789abcdef")[intpart
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_snprintf.c1000 UINTMAX_T intpart; local
1107 if ((intpart = cast(ufvalue)) == UINTMAX_MAX) {
1121 if ((fracpart = myround(mask * (ufvalue - intpart))) >= mask) {
1123 * For example, ufvalue = 2.99962, intpart = 2, and mask = 1000
1128 intpart++;
1130 if (estyle && intpart == 10) {
1137 intpart = 1;
1193 ipos = convert(intpart, iconvert, sizeof(iconvert), 10, 0);
1380 UINTMAX_T intpart = cast(value); local
1382 return ((value -= intpart) < 0.
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_snprintf.c1000 UINTMAX_T intpart; local
1107 if ((intpart = cast(ufvalue)) == UINTMAX_MAX) {
1121 if ((fracpart = myround(mask * (ufvalue - intpart))) >= mask) {
1123 * For example, ufvalue = 2.99962, intpart = 2, and mask = 1000
1128 intpart++;
1130 if (estyle && intpart == 10) {
1137 intpart = 1;
1193 ipos = convert(intpart, iconvert, sizeof(iconvert), 10, 0);
1380 UINTMAX_T intpart = cast(value); local
1382 return ((value -= intpart) < 0.
[all...]

Completed in 237 milliseconds