Home
last modified time | relevance | path

Searched refs:FLT_MAX (Results 1 – 21 of 21) sorted by relevance

/freebsd-10-stable/lib/msun/tests/
Dnext_test.c218 testf(idf(nextafterf(FLT_MAX, INFINITY)), INFINITY, ex_over); in main()
219 testf(idf(nextafterf(INFINITY, 0.0)), FLT_MAX, 0); in main()
220 testf(idf(nexttowardf(FLT_MAX, FLT_MAX * 2.0)), INFINITY, ex_over); in main()
221 testf(idf(nexttowardf(INFINITY, FLT_MAX * 2.0)), FLT_MAX, 0); in main()
Dfma_test.c151 test(fmaf, FLT_MAX, FLT_MAX, -INFINITY, -INFINITY, ALL_STD_EXCEPT, 0); in test_infinities()
155 test(fmaf, FLT_MAX, -FLT_MAX, INFINITY, INFINITY, ALL_STD_EXCEPT, 0); in test_infinities()
176 test(fmaf, FLT_MAX, FLT_MAX, NAN, NAN, ALL_STD_EXCEPT, 0); in test_nans()
/freebsd-10-stable/contrib/netbsd-tests/lib/libm/
Dt_infinity.c50 v = FLT_MAX; in ATF_TC_BODY()
55 v = -FLT_MAX; in ATF_TC_BODY()
/freebsd-10-stable/contrib/gcc/ginclude/
Dfloat.h104 #undef FLT_MAX
107 #define FLT_MAX __FLT_MAX__ macro
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/
Dfloat.h58 # undef FLT_MAX
106 #define FLT_MAX __FLT_MAX__ macro
/freebsd-10-stable/sys/ia64/include/
Dfloat.h56 #define FLT_MAX 3.40282347E+38F /* (1-b**(-p))*b**emax */ macro
/freebsd-10-stable/sys/sparc64/include/
Dfloat.h61 #define FLT_MAX 3.40282347E+38F /* (1-b**(-p))*b**emax */ macro
/freebsd-10-stable/sys/x86/include/
Dfloat.h60 #define FLT_MAX 3.40282347E+38F /* (1-b**(-p))*b**emax */ macro
/freebsd-10-stable/sys/powerpc/include/
Dfloat.h61 #define FLT_MAX 3.40282347E+38F /* (1-b**(-p))*b**emax */ macro
/freebsd-10-stable/sys/mips/include/
Dfloat.h63 #define FLT_MAX 3.40282347E+38F /* (1-b**(-p))*b**emax */ macro
/freebsd-10-stable/sys/arm/include/
Dfloat.h64 #define FLT_MAX 3.40282347E+38F /* (1-b**(-p))*b**emax */ macro
/freebsd-10-stable/contrib/libc++/include/
Dcfloat49 FLT_MAX
Dmodule.modulemap71 FLT_MAX, FLT_MAX_10_EXP, FLT_MAX_EXP,
/freebsd-10-stable/lib/libc/tests/stdio/
Dscanfloat_test.c294 ATF_REQUIRE(strtof("3.5e38", &endp) == FLT_MAX); in ATF_TC_BODY()
300 ATF_REQUIRE(strtof("3.5e38", &endp) == FLT_MAX); in ATF_TC_BODY()
/freebsd-10-stable/contrib/tzcode/zic/
Dzdump.c394 absolute_min_time = (time_t) -FLT_MAX; in setabsolutes()
395 absolute_max_time = (time_t) FLT_MAX; in setabsolutes()
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/gen/
Dt_fpsetmask.c88 static volatile const float f_huge = FLT_MAX;
/freebsd-10-stable/usr.bin/xlint/lint1/
Dtree.c1937 max = FLT_MAX; min = -FLT_MAX; break; in cvtcon()
2955 v->v_ldbl = l < 0 ? -FLT_MAX : FLT_MAX; in foldflt()
2997 (v->v_ldbl > FLT_MAX || v->v_ldbl < -FLT_MAX)) || in foldflt()
3003 v->v_ldbl = v->v_ldbl < 0 ? -FLT_MAX : FLT_MAX; in foldflt()
Dscan.l717 f = f > 0 ? FLT_MAX : -FLT_MAX; in fcon()
/freebsd-10-stable/lib/msun/src/
Dcatrigf.c293 if (ax > FLT_MAX / 2) in clog_for_large_values()
/freebsd-10-stable/contrib/tzcode/stdtime/
Dlocaltime.c1954 else hi = (time_t) FLT_MAX;
/freebsd-10-stable/contrib/gcc/
DChangeLog-200321919 value representable in a given mode (i.e. FLT_MAX and DBL_MAX).