Searched refs:modf (Results 1 - 25 of 29) sorted by path

12

/freebsd-11-stable/contrib/gcc/
H A Dfp-test.c59 extern double modf (double, double *);
243 d1 = modf (d2, &d3);
H A Dsys-protos.h730 extern double modf(double, double *);
/freebsd-11-stable/contrib/libstdc++/
H A Dconfigure17035 echo "$as_me:$LINENO: checking for modf declaration" >&5
17036 echo $ECHO_N "checking for modf declaration... $ECHO_C" >&6
17060 modf(0, 0);
17110 for ac_func in modf
[all...]
/freebsd-11-stable/contrib/libstdc++/include/c/
H A Dstd_cmath.h61 #undef modf macro
98 modf(float __x, float* __iptr) { return modff(__x, __iptr); } function in namespace:std
101 modf(float __x, float* __iptr) function in namespace:std
104 double __res = modf(static_cast<double>(__x), &__tmp);
112 modf(long double __x, long double* __iptr) { return modfl(__x, __iptr); } function in namespace:std
115 modf(long double __x, long double* __iptr) function in namespace:std
118 double __res = modf(static_cast<double>(__x), &__tmp);
/freebsd-11-stable/contrib/libstdc++/include/c_compatibility/
H A Dmath.h51 using std::modf;
/freebsd-11-stable/contrib/libstdc++/include/c_std/
H A Dstd_cmath.h74 #undef modf macro
335 using ::modf;
338 modf(float __x, float* __iptr) function
342 modf(long double __x, long double* __iptr) function
/freebsd-11-stable/contrib/libstdc++/libmath/
H A Dstubs.c354 result = modf(x, &temp);
366 result = modf((double) x, &temp);
/freebsd-11-stable/contrib/libstdc++/src/
H A Dcompatibility.cc462 _GLIBCXX_MATHL_WRAPPER (modf, (double x, double *y), (x, y), GLIBCXX_3.4.3);
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_fpclassify.c123 d2 = modf(d1, &ip);
140 * XXX NetBSD doesn't have long-double flavors of frexp, ldexp, and modf,
/freebsd-11-stable/contrib/netbsd-tests/lib/libm/
H A Dt_modf.c36 ATF_TC(modf); variable
37 ATF_TC_HEAD(modf, tc)
39 atf_tc_set_md_var(tc, "descr","Check modf family");
42 ATF_TC_BODY(modf, tc)
49 ATF_CHECK(modf(1.0, &base) == 0.0);
56 ATF_CHECK(modf(-1 - DBL_EPSILON, &base) == -DBL_EPSILON);
65 ATF_TP_ADD_TC(tp, modf);
/freebsd-11-stable/contrib/one-true-awk/
H A Drun.c1033 modf(i/j, &v);
1040 if (j >= 0 && modf(j, &v) == 0.0) /* pos integer exponent */
1130 modf(xf/yf, &v);
1134 if (yf >= 0 && modf(yf, &v) == 0.0) /* pos integer exponent */
1499 modf(getfval(x), &u); break;
H A Dtran.c379 if (modf(vp->fval, &dtemp) == 0) /* it's integral */
/freebsd-11-stable/gnu/lib/libstdc++/
H A Dconfig.h238 /* Define to 1 if you have the `modf' function. */
1011 # define modf _modf macro
/freebsd-11-stable/lib/libc/gen/
H A Dmodf.c17 * modf(double x, double *iptr)
92 modf(double x, double *iptr) function
/freebsd-11-stable/lib/msun/src/
H A Ds_modf.c18 * modf(double x, double *iptr)
33 modf(double x, double *iptr) function
/freebsd-11-stable/lib/msun/tests/
H A Dnearbyint_test.c140 assert(fpequal(out, modf(in, &ipart)));
152 assert(fpequal(out, modf(in, &ipart)));
159 printf("ok %d\t\t# modf(+%g)\n", testnum++, in);
/freebsd-11-stable/contrib/apr/
H A Dconfigure19758 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing modf" >&5
19759 $as_echo_n "checking for library containing modf... " >&6; }
19773 char modf ();
19777 return modf ();
/freebsd-11-stable/contrib/apr/strings/
H A Dapr_snprintf.c102 arg = modf(arg, &fi);
109 fj = modf(fi / 10, &fi);
133 arg = modf(arg, &fj);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_cmath.h142 __DEVICE__ float modf(float __x, float *__iptr) { return ::modff(__x, __iptr); } function
H A D__clang_cuda_device_functions.h1640 __DEVICE__ double modf(double __a, double *__b) { return __nv_modf(__a, __b); } function
H A D__clang_cuda_math_forward_declares.h165 __DEVICE__ double modf(double, double *);
166 __DEVICE__ float modf(float, float *);
275 using ::modf;
H A Dopencl-c.h7952 * Decompose a floating-point number. The modf
7959 float __ovld modf(float x, float *iptr);
7960 float2 __ovld modf(float2 x, float2 *iptr);
7961 float3 __ovld modf(float3 x, float3 *iptr);
7962 float4 __ovld modf(float4 x, float4 *iptr);
7963 float8 __ovld modf(float8 x, float8 *iptr);
7964 float16 __ovld modf(float16 x, float16 *iptr);
7966 double __ovld modf(double x, double *iptr);
7967 double2 __ovld modf(double2 x, double2 *iptr);
7968 double3 __ovld modf(double
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc2897 INTERCEPTOR(double, modf, double x, double *iptr) {
2899 COMMON_INTERCEPTOR_ENTER(ctx, modf, x, iptr);
2903 double res = REAL(modf)(x, iptr);
2934 COMMON_INTERCEPT_FUNCTION(modf); \
/freebsd-11-stable/contrib/llvm-project/libcxx/include/
H A Dmath.h106 floating_point modf (floating_point value, floating_point* iptr);
1021 // modf
1024 inline _LIBCPP_INLINE_VISIBILITY float modf(float __lcpp_x, float* __lcpp_y) _NOEXCEPT {return ::modff(__lcpp_x, __lcpp_y);}
1025 inline _LIBCPP_INLINE_VISIBILITY long double modf(long double __lcpp_x, long double* __lcpp_y) _NOEXCEPT {return ::modfl(__lcpp_x, __lcpp_y);}
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h418 if (LLVM_LIKELY(std::modf(D, &D) == 0.0 &&

Completed in 947 milliseconds

12