/freebsd/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/contrib/llvm-project/libcxx/include/__math/ |
H A D | modulo.h | 48 inline _LIBCPP_HIDE_FROM_ABI float modf(float __x, float* __y) _NOEXCEPT { return __builtin_modff(_… in modf() function 51 _LIBCPP_HIDE_FROM_ABI double modf(double __x, double* __y) _NOEXCEPT { in modf() function 55 inline _LIBCPP_HIDE_FROM_ABI long double modf(long double __x, long double* __y) _NOEXCEPT { in modf() function
|
/freebsd/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 | 7875 float __ovld modf(float, float *); 7876 float2 __ovld modf(float2, float2 *); 7877 float3 __ovld modf(float3, float3 *); 7878 float4 __ovld modf(float4, float4 *); 7879 float8 __ovld modf(float8, float8 *); 7880 float16 __ovld modf(float16, float16 *); 7882 double __ovld modf(double, double *); 7883 double2 __ovld modf(double2, double2 *); 7884 double3 __ovld modf(double3, double3 *); 7885 double4 __ovld modf(double4, double4 *); [all …]
|
H A D | __clang_cuda_cmath.h | 160 __DEVICE__ float modf(float __x, float *__iptr) { return ::modff(__x, __iptr); } in modf() function
|
/freebsd/lib/msun/tests/ |
H A D | nearbyint_test.c | 132 CHECK_FPEQUAL(out, modf(in, &ipart)); in test_modf() 144 CHECK_FPEQUAL(out, modf(in, &ipart)); in test_modf()
|
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/ |
H A D | modf.c | 13 float64x2_t VPCS_ATTR V_NAME_D1_L1 (modf) (float64x2_t x, double *out_int) in V_NAME_D1_L1() argument
|
H A D | modff.c | 13 float32x4_t VPCS_ATTR NOINLINE V_NAME_F1_L1 (modf) (float32x4_t x, in V_NAME_F1_L1() argument
|
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/ |
H A D | modff.c | 13 svfloat32_t SV_NAME_F1_L1 (modf) (svfloat32_t x, float *out_int, in SV_NAME_F1_L1() argument
|
H A D | modf.c | 13 svfloat64_t SV_NAME_D1_L1 (modf) (svfloat64_t x, double *out_int, in SV_NAME_D1_L1() argument
|
/freebsd/lib/libc/gen/ |
H A D | Makefile.inc | 185 MISRCS+=modf.c 260 modf.3 \ 451 MLINKS+=modf.3 modff.3 \ 452 modf.3 modfl.3
|
H A D | modf.c | 88 modf(double x, double *iptr) in modf() function
|
H A D | Symbol.map | 203 modf;
|
/freebsd/lib/msun/src/ |
H A D | s_modf.c | 28 modf(double x, double *iptr) in modf() function
|
H A D | math.h | 253 double modf(double, double *); /* fundamentally !__pure2 */
|
/freebsd/contrib/netbsd-tests/lib/libc/gen/ |
H A D | t_fpclassify.c | 123 d2 = modf(d1, &ip); in ATF_TC_BODY()
|
/freebsd/contrib/arm-optimized-routines/math/test/ |
H A D | ulp_wrappers.h | 59 double modf_frac(double x) { double i; return modf(x, &i); } in modf_frac() 60 double modf_int(double x) { double i; modf(x, &i); return i; } in modf_int()
|
H A D | mathtest.c | 321 TFUNC(at_ddp,rt_d2, modf, 0), 1453 } else if (t.func->func.ptr == &modf || t.func->func.ptr == &modff) { in runtest()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | math.h | 482 using std::__math::modf;
|
H A D | cmath | 109 floating_point modf (floating_point value, floating_point* iptr); 402 using ::modf _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/scripts/ |
H A D | global_symbols.txt | 141 modf U
|
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/ |
H A D | cmath.inc | 110 using ::modf _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/one-true-awk/ |
H A D | run.c | 1475 modf(i/j, &v); in arith() 1484 if (j >= 0 && modf(j, &v) == 0.0) /* pos integer exponent */ in arith() 1577 modf(xf/yf, &v); in assign() 1581 if (yf >= 0 && modf(yf, &v) == 0.0) /* pos integer exponent */ in assign() 2087 modf(getfval(x), &u); break; in bltin()
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | cmath.cppm |
|