| /freebsd-12.1/contrib/netbsd-tests/lib/libm/ |
| H A D | t_modf.c | 36 ATF_TC(modf); 37 ATF_TC_HEAD(modf, tc) in ATF_TC_HEAD() argument 42 ATF_TC_BODY(modf, tc) in ATF_TC_BODY() argument 49 ATF_CHECK(modf(1.0, &base) == 0.0); in ATF_TC_BODY() 56 ATF_CHECK(modf(-1 - DBL_EPSILON, &base) == -DBL_EPSILON); in ATF_TC_BODY() 65 ATF_TP_ADD_TC(tp, modf); in ATF_TP_ADD_TCS()
|
| /freebsd-12.1/contrib/libstdc++/include/c/ |
| H A D | std_cmath.h | 61 #undef modf 98 modf(float __x, float* __iptr) { return modff(__x, __iptr); } in modf() function 101 modf(float __x, float* __iptr) in modf() function 104 double __res = modf(static_cast<double>(__x), &__tmp); in modf() 112 modf(long double __x, long double* __iptr) { return modfl(__x, __iptr); } in modf() function 115 modf(long double __x, long double* __iptr) in modf() function 118 double __res = modf(static_cast<double>(__x), &__tmp); in modf()
|
| /freebsd-12.1/contrib/gcclibs/libiberty/config/ |
| H A D | mh-aix | 5 # in libc.a for use by some libc public functions including modf. The public 7 # uses modf), we add copysign here. Supposedly, this problem is fixed in AIX
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Headers/ |
| H A D | __clang_cuda_math_forward_declares.h | 144 __DEVICE__ double modf(double, double *); 145 __DEVICE__ float modf(float, float *); 254 using ::modf;
|
| H A D | __clang_cuda_cmath.h | 133 __DEVICE__ float modf(float __x, float *__iptr) { return ::modff(__x, __iptr); } in modf() function
|
| H A D | opencl-c.h | 8210 float __ovld modf(float x, float *iptr); 8211 float2 __ovld modf(float2 x, float2 *iptr); 8212 float3 __ovld modf(float3 x, float3 *iptr); 8213 float4 __ovld modf(float4 x, float4 *iptr); 8214 float8 __ovld modf(float8 x, float8 *iptr); 8217 double __ovld modf(double x, double *iptr); 8225 half __ovld modf(half x, half *iptr); 8226 half2 __ovld modf(half2 x, half2 *iptr); 8227 half3 __ovld modf(half3 x, half3 *iptr); 8228 half4 __ovld modf(half4 x, half4 *iptr); [all …]
|
| /freebsd-12.1/lib/msun/tests/ |
| H A D | nearbyint_test.c | 140 assert(fpequal(out, modf(in, &ipart))); in test_modf() 152 assert(fpequal(out, modf(in, &ipart))); in test_modf()
|
| /freebsd-12.1/contrib/libstdc++/libmath/ |
| H A D | stubs.c | 354 result = modf(x, &temp); in modff() 366 result = modf((double) x, &temp); in modfl()
|
| /freebsd-12.1/contrib/libstdc++/include/c_std/ |
| H A D | std_cmath.h | 74 #undef modf 335 using ::modf; 338 modf(float __x, float* __iptr) in modf() function 342 modf(long double __x, long double* __iptr) in modf() function
|
| /freebsd-12.1/lib/libc/gen/ |
| H A D | Makefile.inc | 179 MISRCS+=modf.c 258 modf.3 \ 451 MLINKS+=modf.3 modff.3 \ 452 modf.3 modfl.3
|
| H A D | modf.c | 92 modf(double x, double *iptr) in modf() function
|
| H A D | Symbol.map | 203 modf;
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | fp-test.c | 59 extern double modf (double, double *); 243 d1 = modf (d2, &d3); in main()
|
| /freebsd-12.1/lib/msun/src/ |
| H A D | s_modf.c | 33 modf(double x, double *iptr) in modf() function
|
| H A D | math.h | 249 double modf(double, double *); /* fundamentally !__pure2 */
|
| /freebsd-12.1/contrib/libstdc++/include/c_compatibility/ |
| H A D | math.h | 51 using std::modf;
|
| /freebsd-12.1/contrib/netbsd-tests/lib/libc/gen/ |
| H A D | t_fpclassify.c | 123 d2 = modf(d1, &ip); in ATF_TC_BODY()
|
| /freebsd-12.1/contrib/apr/strings/ |
| H A D | apr_snprintf.c | 102 arg = modf(arg, &fi); in apr_cvt() 110 fj = modf(fi / 10, &fi); in apr_cvt() 134 arg = modf(arg, &fj); in apr_cvt()
|
| /freebsd-12.1/gnu/lib/libstdc++/ |
| H A D | config.h | 1008 # define modf _modf macro
|
| /freebsd-12.1/contrib/gcc/cp/ |
| H A D | cfns.gperf | 128 modf keyword
|
| /freebsd-12.1/contrib/libstdc++/src/ |
| H A D | compatibility.cc | 462 _GLIBCXX_MATHL_WRAPPER (modf, (double x, double *y), (x, y), GLIBCXX_3.4.3);
|
| /freebsd-12.1/contrib/one-true-awk/ |
| H A D | run.c | 1033 modf(i/j, &v); in arith() 1040 if (j >= 0 && modf(j, &v) == 0.0) /* pos integer exponent */ in arith() 1130 modf(xf/yf, &v); in assign() 1134 if (yf >= 0 && modf(yf, &v) == 0.0) /* pos integer exponent */ in assign() 1499 modf(getfval(x), &u); break; in bltin()
|
| H A D | tran.c | 379 if (modf(vp->fval, &dtemp) == 0) /* it's integral */ in get_str_val()
|
| /freebsd-12.1/contrib/libc++/include/ |
| H A D | cmath | 110 floating_point modf (floating_point value, floating_point* iptr); 371 using ::modf;
|
| /freebsd-12.1/contrib/compiler-rt/lib/dfsan/ |
| H A D | done_abilist.txt | 60 fun:modf=functional
|