Home | History | Annotate | Download | only in mips32

Lines Matching full:rint

36    /* Tesing rint. */
37 fesetround(FE_UPWARD); // rint/rintf/rintl obey the rounding mode.
39 feclearexcept(FE_ALL_EXCEPT); // rint/rintf/rintl do set the FE_INEXACT flag.
41 printf("rint(1234.0): %f\n", rint(1234.0));
44 printf("rint(1234.01): %f\n", rint(1234.01));
48 feclearexcept(FE_ALL_EXCEPT); // rint/rintf/rintl do set the FE_INEXACT flag.
57 feclearexcept(FE_ALL_EXCEPT); // rint/rintf/rintl do set the FE_INEXACT flag.
66 fesetround(FE_TOWARDZERO); // rint/rintf obey the rounding mode.
68 printf("rint(1234.01): %f\n", rint(1234.01));