HomeSort by relevance Sort by last modified time
    Searched refs:ufvalue (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_snprintf.c 999 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
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_snprintf.c 999 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
    [all...]
  /external/openssh/openbsd-compat/
bsd-snprintf.c 677 double ufvalue; local
697 ufvalue = abs_val (fvalue);
715 if (max == 0) ufvalue += 0.5; /* if max = 0 we must round */
729 temp = ufvalue;
732 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
  /external/chromium_org/third_party/openssl/openssl/crypto/bio/
b_print.c 612 LDOUBLE ufvalue; local
626 ufvalue = abs_val(fvalue);
634 intpart = (long)ufvalue;
644 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
  /external/openssl/crypto/bio/
b_print.c 612 LDOUBLE ufvalue; local
626 ufvalue = abs_val(fvalue);
634 intpart = (long)ufvalue;
644 fracpart = roundv(pow_10(max) * (ufvalue - intpart));

Completed in 231 milliseconds