Home
last modified time | relevance | path

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

1234

/openbsd/src/lib/libm/arch/amd64/
De_fmod.S12 ENTRY(fmod)
13 RETGUARD_SETUP(fmod, r11)
23 RETGUARD_CHECK(fmod, r11)
25 END(fmod)
/openbsd/src/lib/libm/arch/i387/
De_fmod.S9 ENTRY(fmod)
18 END(fmod)
/openbsd/src/lib/libm/src/
De_fmod.c27 fmod(double x, double y) in fmod() function
131 DEF_STD(fmod);
132 LDBL_MAYBE_UNUSED_CLONE(fmod);
De_remainder.c51 if (hp<=0x7fdfffff) x = fmod(x,p+p); /* now x < 2p */ in remainder()
/openbsd/src/gnu/usr.bin/gcc/gcc/fixinc/tests/base/
Dmath.h34 extern double floor(), ceil(), fmod(), fabs _PARAMS((double));
59 extern double fmod(double, double);
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/c_std/
Dstd_cmath.h67 #undef fmod
402 using ::fmod;
406 fmod(float __x, float __y) { return __gnu_cxx::__c99_binding::fmodf(__x, __y); } in fmod() function
409 fmod(float __x, float __y) in fmod() function
410 { return ::fmod(static_cast<double>(__x), static_cast<double>(__y)); } in fmod()
415 fmod(long double __x, long double __y) { return ::fmodl(__x, __y); } in fmod() function
418 fmod(long double __x, long double __y) in fmod() function
419 { return ::fmod(static_cast<double>(__x), static_cast<double>(__y)); } in fmod()
/openbsd/src/usr.bin/jot/
Djot.c267 if (prec > 0 || (fmod(ender, 1) == 0 && fmod(begin, 1) == 0)) { in main()
276 if (fmod(range, 1) == 0) { in main()
/openbsd/src/gnu/llvm/clang/lib/Headers/
D__clang_cuda_math_forward_declares.h77 __DEVICE__ double fmod(double, double);
78 __DEVICE__ float fmod(float, float);
224 using ::fmod;
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;
D__clang_hip_cmath.h227 __DEF_FUN2(float, fmod)
503 __HIP_OVERLOAD2(double, fmod)
674 using ::fmod;
/openbsd/src/usr.bin/lastcomm/
Dlastcomm.c136 fmod(delta, (double)SECSPERHOUR) / SECSPERMIN, in main()
137 fmod(delta, (double)SECSPERMIN)); in main()
/openbsd/src/gnu/gcc/libstdc++-v3/libmath/
Dstubs.c211 return (float) fmod(x, y); in fmodf()
219 return fmod((double) x, (double) y); in fmodl()
/openbsd/src/gnu/gcc/libstdc++-v3/include/c_std/
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
/openbsd/src/gnu/gcc/fixincludes/tests/base/
Dmath.h67 extern double fmod(double, double);
/openbsd/src/gnu/usr.bin/gcc/gcc/
Dfp-test.c65 extern double fmod (double, double);
249 d1 = fmod (d2, d3); in main()
/openbsd/src/gnu/gcc/gcc/
Dfp-test.c65 extern double fmod (double, double);
249 d1 = fmod (d2, d3); in main()
/openbsd/src/gnu/llvm/llvm/tools/llvm-xray/
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()
/openbsd/src/gnu/gcc/libstdc++-v3/include/c_compatibility/
Dmath.h57 using std::fmod;
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/c_compatibility/
Dmath.h57 using std::fmod;
/openbsd/src/gnu/gcc/libstdc++-v3/include/c/
Dstd_cmath.h56 #undef fmod
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/c/
Dstd_cmath.h56 #undef fmod
/openbsd/src/include/
Dtgmath.h135 #define fmod(x, y) __tg_simple2(x, y, fmod) macro
/openbsd/src/gnu/gcc/libstdc++-v3/include/tr1/
Dmath.h64 using std::tr1::fmod;
/openbsd/src/lib/libm/
DSymbols.map162 fmod;
/openbsd/src/games/pom/
Dpom.c190 *deg = fmod(*deg, 360.0); in adj360()

1234