Home | History | Annotate | Download | only in mips32

Lines Matching refs:nearbyintl

73    fesetround(FE_UPWARD); // nearbyint/nearbyintf/nearbyintl obey the rounding mode.
75 feclearexcept(FE_ALL_EXCEPT); // nearbyint/nearbyintf/nearbyintl don't set the FE_INEXACT flag.
85 feclearexcept(FE_ALL_EXCEPT); // nearbyint/nearbyintf/nearbyintl don't set the FE_INEXACT flag.
87 printf("nearbyintl(1234.0f): %Lf\n", nearbyintl(1234.0f));
88 printf("nearbyintl(1234.01f): %Lf\n", nearbyintl(1234.01f));
90 fesetround(FE_TOWARDZERO); // nearbyint/nearbyintf/nearbyintl obey the rounding mode.
94 printf("nearbyintl(1234.01): %Lf\n", nearbyintl(1234.01));