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

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_snprintf.c999 LDOUBLE ufvalue; local
1103 ufvalue = (fvalue >= 0.0) ? fvalue : -fvalue;
1105 ufvalue /= mypow10(exponent);
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
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_snprintf.c999 LDOUBLE ufvalue; local
1103 ufvalue = (fvalue >= 0.0) ? fvalue : -fvalue;
1105 ufvalue /= mypow10(exponent);
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
/external/openssl/crypto/bio/
H A Db_print.c612 LDOUBLE ufvalue; local
626 ufvalue = abs_val(fvalue);
634 intpart = (long)ufvalue;
644 fracpart = roundv(pow_10(max) * (ufvalue - intpart));

Completed in 474 milliseconds