| /freebsd-13.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-13.1/contrib/llvm-project/clang/lib/Headers/ |
| H A D | __clang_cuda_math_forward_declares.h | 139 __DEVICE__ double modf(double, double *); 140 __DEVICE__ float modf(float, float *); 252 using ::modf;
|
| H A D | __clang_hip_cmath.h | 149 __DEVICE__ __CONSTEXPR__ float modf(float __x, float *__iptr) { in modf() function 588 modf(__T __x, double *__exp) { 589 return ::modf((double)__x, __exp); 698 using ::modf;
|
| H A D | opencl-c.h | 7866 float __ovld modf(float x, float *iptr); 7867 float2 __ovld modf(float2 x, float2 *iptr); 7868 float3 __ovld modf(float3 x, float3 *iptr); 7869 float4 __ovld modf(float4 x, float4 *iptr); 7870 float8 __ovld modf(float8 x, float8 *iptr); 7873 double __ovld modf(double x, double *iptr); 7881 half __ovld modf(half x, half *iptr); 7882 half2 __ovld modf(half2 x, half2 *iptr); 7883 half3 __ovld modf(half3 x, half3 *iptr); 7884 half4 __ovld modf(half4 x, half4 *iptr); [all …]
|
| H A D | __clang_cuda_cmath.h | 160 __DEVICE__ float modf(float __x, float *__iptr) { return ::modff(__x, __iptr); } in modf() function
|
| H A D | __clang_cuda_math.h | 198 __DEVICE__ double modf(double __a, double *__b) { return __nv_modf(__a, __b); } in modf() function
|
| H A D | __clang_hip_math.h | 905 double modf(double __x, double *__iptr) {
|
| /freebsd-13.1/lib/msun/tests/ |
| H A D | nearbyint_test.c | 135 CHECK_FPEQUAL(out, modf(in, &ipart)); in test_modf() 147 CHECK_FPEQUAL(out, modf(in, &ipart)); in test_modf()
|
| /freebsd-13.1/lib/libc/gen/ |
| H A D | Makefile.inc | 189 MISRCS+=modf.c 268 modf.3 \ 463 MLINKS+=modf.3 modff.3 \ 464 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-13.1/lib/msun/src/ |
| H A D | s_modf.c | 33 modf(double x, double *iptr) in modf() function
|
| H A D | math.h | 254 double modf(double, double *); /* fundamentally !__pure2 */
|
| /freebsd-13.1/contrib/subversion/subversion/svn/ |
| H A D | filesize.c | 104 const double frac = modf(absolute_human_readable_size, &integral); in format_size()
|
| /freebsd-13.1/contrib/netbsd-tests/lib/libc/gen/ |
| H A D | t_fpclassify.c | 123 d2 = modf(d1, &ip); in ATF_TC_BODY()
|
| /freebsd-13.1/contrib/apr/strings/ |
| H A D | apr_snprintf.c | 102 arg = modf(arg, &fi); in apr_cvt() 109 fj = modf(fi / 10, &fi); in apr_cvt() 133 arg = modf(arg, &fj); in apr_cvt()
|
| /freebsd-13.1/contrib/one-true-awk/ |
| H A D | run.c | 1066 modf(i/j, &v); in arith() 1075 if (j >= 0 && modf(j, &v) == 0.0) /* pos integer exponent */ in arith() 1167 modf(xf/yf, &v); in assign() 1171 if (yf >= 0 && modf(yf, &v) == 0.0) /* pos integer exponent */ in assign() 1629 modf(getfval(x), &u); break; in bltin()
|
| H A D | tran.c | 474 else if (modf(vp->fval, &dtemp) == 0) /* it's integral */ \ in get_str_val()
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/ |
| H A D | cmath | 109 floating_point modf (floating_point value, floating_point* iptr); 376 using ::modf _LIBCPP_USING_IF_EXISTS;
|
| H A D | math.h | 994 inline _LIBCPP_INLINE_VISIBILITY float modf(float __lcpp_x, float* __lcpp_y) _NOEXCEPT … in modf() function 995 inline _LIBCPP_INLINE_VISIBILITY long double modf(long double __lcpp_x, long double* __lcpp_y) _NOE… in modf() function
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | done_abilist.txt | 107 fun:modf=functional
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | TargetLibraryInfo.def | 1057 /// double modf(double x, double *iptr); 1058 TLI_DEFINE_ENUM_INTERNAL(modf) 1059 TLI_DEFINE_STRING_INTERNAL("modf")
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | JSON.h | 421 if (LLVM_LIKELY(std::modf(D, &D) == 0.0 && in getAsInteger()
|
| /freebsd-13.1/contrib/ntp/ntpd/ |
| H A D | ntp_refclock.c | 1499 dcorr = modf((pp->fudgetime1 - dtemp), &trash); in refclock_pps()
|
| /freebsd-13.1/contrib/llvm-project/libcxx/include/experimental/ |
| H A D | simd | 409 template <class Abi> floatv<Abi> modf(floatv<Abi> value, floatv<Abi>* iptr); 410 template <class Abi> doublev<Abi> modf(doublev<Abi> value, doublev<Abi>* iptr); 411 template <class Abi> ldoublev<Abi> modf(ldoublev<Abi> value, ldoublev<Abi>* iptr);
|