| /freebsd-12.1/contrib/netbsd-tests/lib/libm/ |
| H A D | t_fmod.c | 38 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 D | aes_pwr8.c | 40 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 D | e_fmod.S | 39 ENTRY(fmod) 48 END(fmod)
|
| /freebsd-12.1/lib/msun/amd64/ |
| H A D | e_fmod.S | 39 ENTRY(fmod) 52 END(fmod)
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Headers/ |
| H A D | __clang_cuda_math_forward_declares.h | 91 __DEVICE__ double fmod(double, double); 92 __DEVICE__ float fmod(float, float); 226 using ::fmod;
|
| H A D | __clang_cuda_cmath.h | 63 __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 D | tgmath.h | 807 __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 D | stubs.c | 211 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 D | std_cmath.h | 69 #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 D | fp-test.c | 65 extern double fmod (double, double); 249 d1 = fmod (d2, d3); in main()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-xray/ |
| H A D | xray-color-helper.cpp | 129 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 D | math.h | 57 using std::fmod;
|
| /freebsd-12.1/contrib/libstdc++/include/c/ |
| H A D | std_cmath.h | 56 #undef fmod
|
| /freebsd-12.1/lib/msun/ |
| H A D | Makefile | 142 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 D | Symbol.map | 23 fmod;
|
| /freebsd-12.1/include/ |
| H A D | tgmath.h | 178 #define fmod(x, y) __tg_simple2(x, y, fmod) macro
|
| /freebsd-12.1/contrib/libstdc++/include/tr1/ |
| H A D | math.h | 64 using std::tr1::fmod;
|
| /freebsd-12.1/lib/msun/src/ |
| H A D | e_fmod.c | 137 __weak_reference(fmod, fmodl);
|
| H A D | math.h | 257 double fmod(double, double);
|
| /freebsd-12.1/contrib/ntp/ntpd/ |
| H A D | refclock_ripencc.c | 1626 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 D | llimits.h | 283 { (m) = l_mathop(fmod)(a,b); if ((m)*(b) < 0) (m) += (b); }
|
| /freebsd-12.1/tools/regression/include/tgmath/ |
| H A D | tgmath.c | 120 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 D | math.h | 906 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 D | cfns.gperf | 57 fmod keyword
|
| /freebsd-12.1/contrib/libstdc++/src/ |
| H A D | compatibility.cc | 444 _GLIBCXX_MATHL_WRAPPER2 (fmod, GLIBCXX_3.4.3);
|