Home
last modified time | relevance | path

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

12

/freebsd-13.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()
56 ATF_CHECK(fmod(2.0, 0.5) == 0); in ATF_TC_BODY()
60 ATF_CHECK(fabs(fmod(1.0, 0.1) - 0.1) <= 55 * DBL_EPSILON); in ATF_TC_BODY()
67 ATF_TP_ADD_TC(tp, fmod); in ATF_TP_ADD_TCS()
/freebsd-13.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-13.1/lib/msun/i387/
H A De_fmod.S39 ENTRY(fmod)
48 END(fmod)
/freebsd-13.1/lib/msun/amd64/
H A De_fmod.S39 ENTRY(fmod)
52 END(fmod)
/freebsd-13.1/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h77 __DEVICE__ double fmod(double, double);
78 __DEVICE__ float fmod(float, float);
224 using ::fmod;
H A D__clang_cuda_cmath.h55 __DEVICE__ float fmod(float __x, float __y) { return ::fmodf(__x, __y); } in fmod() function
263 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, fmod);
391 using ::fmod;
H A D__clang_hip_cmath.h227 __DEF_FUN2(float, fmod)
503 __HIP_OVERLOAD2(double, fmod)
674 using ::fmod;
H A Dtgmath.h791 __tg_fmod(double __x, double __y) {return fmod(__x, __y);} in __tg_fmod()
797 #undef fmod
798 #define fmod(__x, __y) __tg_fmod(__tg_promote2((__x), (__y))(__x), \ macro
H A D__clang_cuda_math.h135 __DEVICE__ double fmod(double __a, double __b) { return __nv_fmod(__a, __b); } in fmod() function
/freebsd-13.1/contrib/llvm-project/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-13.1/include/
H A Dtgmath.h178 #define fmod(x, y) __tg_simple2(x, y, fmod) macro
/freebsd-13.1/lib/msun/src/
H A De_fmod.c137 __weak_reference(fmod, fmodl);
H A Dmath.h262 double fmod(double, double);
H A Dmath_private.h841 #define __ieee754_fmod fmod
/freebsd-13.1/lib/msun/
H A DMakefile172 fma.3 fmax.3 fmod.3 hypot.3 ieee.3 ieee_test.3 ilogb.3 j0.3 \
225 MLINKS+=fmod.3 fmodf.3 fmod.3 fmodl.3
H A DSymbol.map23 fmod;
/freebsd-13.1/contrib/lua/src/
H A Dllimits.h323 { (void)L; (m) = l_mathop(fmod)(a,b); \
H A Dlmathlib.c128 lua_pushnumber(L, l_mathop(fmod)(luaL_checknumber(L, 1), in math_fmod()
/freebsd-13.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-13.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-13.1/contrib/llvm-project/libcxx/include/
H A Dmath.h923 inline _LIBCPP_INLINE_VISIBILITY float fmod(float __lcpp_x, float __lcpp_y) _NOEXCEPT … in fmod() function
924 inline _LIBCPP_INLINE_VISIBILITY long double fmod(long double __lcpp_x, long double __lcpp_y) _NOEX… in fmod() function
935 fmod(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT in fmod() function
940 return ::fmod((__result_type)__lcpp_x, (__result_type)__lcpp_y); in fmod()
H A Dcmath89 floating_point fmod (arithmetic x, arithmetic y);
363 using ::fmod _LIBCPP_USING_IF_EXISTS;
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp156 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal); in executeFRemInst()
159 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal); in executeFRemInst()
806 fmod(Src1.AggregateVal[i].FloatVal, Src2.AggregateVal[i].FloatVal); in visitBinaryOperator()
811 fmod(Src1.AggregateVal[i].DoubleVal, Src2.AggregateVal[i].DoubleVal); in visitBinaryOperator()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp817 GV.FloatVal = std::fmod(LHS.FloatVal,RHS.FloatVal); break; in getConstantValue()
832 GV.DoubleVal = std::fmod(LHS.DoubleVal,RHS.DoubleVal); break; in getConstantValue()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddone_abilist.txt93 fun:fmod=functional

12