Home
last modified time | relevance | path

Searched refs:fmod (Results 1 – 25 of 49) sorted by relevance

12

/freebsd-12.1/contrib/netbsd-tests/lib/libm/
H A Dt_fmod.c38 ATF_TC(fmod);
39 ATF_TC_HEAD(fmod, tc) in ATF_TC_HEAD() argument
44 ATF_TC_BODY(fmod, tc) in ATF_TC_BODY() argument
52 ATF_CHECK(fmod(2.0, 1.0) == 0); in ATF_TC_BODY()
58 ATF_CHECK(fmod(2.0, 0.5) == 0); in ATF_TC_BODY()
64 ATF_CHECK(fabs(fmod(1.0, 0.1) - 0.1) <= 55 * DBL_EPSILON); in ATF_TC_BODY()
73 ATF_TP_ADD_TC(tp, fmod); in ATF_TP_ADD_TCS()
/freebsd-12.1/contrib/bearssl/src/symcipher/
H A Daes_pwr8.c40 static const uint32_t fmod[] = { 0x11B, 0x11B, 0x11B, 0x11B }; in key_schedule_128() local
75 lxvw4x(39, 0, %[fmod]) in key_schedule_128()
137 : [key] "b" (key), [fmod] "b" (fmod) in key_schedule_128()
/freebsd-12.1/lib/msun/i387/
H A De_fmod.S39 ENTRY(fmod)
48 END(fmod)
/freebsd-12.1/lib/msun/amd64/
H A De_fmod.S39 ENTRY(fmod)
52 END(fmod)
/freebsd-12.1/contrib/llvm/tools/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
226 using ::fmod;
H A D__clang_cuda_cmath.h63 __DEVICE__ float fmod(float __x, float __y) { return ::fmodf(__x, __y); } in fmod() function
225 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, fmod);
353 using ::fmod;
H A Dtgmath.h807 __tg_fmod(double __x, double __y) {return fmod(__x, __y);} in __tg_fmod()
813 #undef fmod
814 #define fmod(__x, __y) __tg_fmod(__tg_promote2((__x), (__y))(__x), \ macro
/freebsd-12.1/contrib/libstdc++/libmath/
H A Dstubs.c211 return (float) fmod(x, y); in fmodf()
219 return fmod((double) x, (double) y); in fmodl()
/freebsd-12.1/contrib/libstdc++/include/c_std/
H A Dstd_cmath.h69 #undef fmod
261 using ::fmod;
264 fmod(float __x, float __y) in fmod() function
268 fmod(long double __x, long double __y) in fmod() function
/freebsd-12.1/contrib/gcc/
H A Dfp-test.c65 extern double fmod (double, double);
249 d1 = fmod (d2, d3); in main()
/freebsd-12.1/contrib/llvm/tools/llvm-xray/
H A Dxray-color-helper.cpp129 double X = C * (1 - std::abs(std::fmod(HPrime, 2.0) - 1)); in convertToRGB()
165 return std::fmod(H0 + T * (H1 - H0) + 720, 360); in interpolateHue()
/freebsd-12.1/contrib/libstdc++/include/c_compatibility/
H A Dmath.h57 using std::fmod;
/freebsd-12.1/contrib/libstdc++/include/c/
H A Dstd_cmath.h56 #undef fmod
/freebsd-12.1/lib/msun/
H A DMakefile142 fma.3 fmax.3 fmod.3 hypot.3 ieee.3 ieee_test.3 ilogb.3 j0.3 \
194 MLINKS+=fmod.3 fmodf.3 fmod.3 fmodl.3
H A DSymbol.map23 fmod;
/freebsd-12.1/include/
H A Dtgmath.h178 #define fmod(x, y) __tg_simple2(x, y, fmod) macro
/freebsd-12.1/contrib/libstdc++/include/tr1/
H A Dmath.h64 using std::tr1::fmod;
/freebsd-12.1/lib/msun/src/
H A De_fmod.c137 __weak_reference(fmod, fmodl);
H A Dmath.h257 double fmod(double, double);
/freebsd-12.1/contrib/ntp/ntpd/
H A Drefclock_ripencc.c1626 second = (unsigned int) fmod(tow, 60.); in parse0x8F0B()
1627 minute = (unsigned int) fmod(tow/60., 60.); in parse0x8F0B()
1628 hour = (unsigned int )fmod(tow / 3600., 24.); in parse0x8F0B()
3245 seconds = (float)fmod(tow, 60.); in show_time()
3246 minutes = (short) fmod(tow/60., 60.); in show_time()
3247 hours = (short)fmod(tow / 3600., 24.); in show_time()
4709 (short)fmod(time_of_fix/3600., 24.), in rpt_8F20()
4710 (short)fmod(time_of_fix/60., 60.), in rpt_8F20()
4711 fmod(time_of_fix, 60.), in rpt_8F20()
4735 (short)latdeg, fmod (latdeg, 1.)*60.0, in rpt_8F20()
[all …]
/freebsd-12.1/contrib/lua/src/
H A Dllimits.h283 { (m) = l_mathop(fmod)(a,b); if ((m)*(b) < 0) (m) += (b); }
/freebsd-12.1/tools/regression/include/tgmath/
H A Dtgmath.c120 TGMACRO_REAL_REAL(fmod) in TGMACRO_REAL_REAL()
518 PASS_REAL_REAL_ARG_REAL_RET(fmod)); in main()
/freebsd-12.1/contrib/libc++/include/
H A Dmath.h906 inline _LIBCPP_INLINE_VISIBILITY float fmod(float __lcpp_x, float __lcpp_y) _NOEXCEPT … in fmod() function
907 inline _LIBCPP_INLINE_VISIBILITY long double fmod(long double __lcpp_x, long double __lcpp_y) _NOEX… in fmod() function
918 fmod(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT in fmod() function
923 return ::fmod((__result_type)__lcpp_x, (__result_type)__lcpp_y); in fmod()
/freebsd-12.1/contrib/gcc/cp/
H A Dcfns.gperf57 fmod keyword
/freebsd-12.1/contrib/libstdc++/src/
H A Dcompatibility.cc444 _GLIBCXX_MATHL_WRAPPER2 (fmod, GLIBCXX_3.4.3);

12