Searched refs:fmod (Results 1 - 25 of 50) sorted by relevance

12

/openbsd-current/lib/libm/arch/amd64/
H A De_fmod.S12 ENTRY(fmod)
13 RETGUARD_SETUP(fmod, r11)
23 RETGUARD_CHECK(fmod, r11)
25 END(fmod)
/openbsd-current/lib/libm/arch/i387/
H A De_fmod.S9 ENTRY(fmod)
18 END(fmod)
/openbsd-current/gnu/usr.bin/gcc/gcc/fixinc/tests/base/
H A Dmath.h34 extern double floor(), ceil(), fmod(), fabs _PARAMS((double));
59 extern double fmod(double, double);
/openbsd-current/gnu/gcc/fixincludes/tests/base/
H A Dmath.h67 extern double fmod(double, double);
/openbsd-current/lib/libm/src/
H A De_fmod.c14 * fmod(x,y)
27 fmod(double x, double y) function
92 /* fix point fmod */
131 DEF_STD(fmod); variable
132 LDBL_MAYBE_UNUSED_CLONE(fmod); variable
H A De_remainder.c19 * Based on fmod() return x-[x/p]chopped*p exactlp.
51 if (hp<=0x7fdfffff) x = fmod(x,p+p); /* now x < 2p */
/openbsd-current/gnu/gcc/libstdc++-v3/include/c_compatibility/
H A Dmath.h57 using std::fmod;
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c_compatibility/
H A Dmath.h57 using std::fmod;
/openbsd-current/gnu/gcc/libstdc++-v3/libmath/
H A Dstubs.c211 return (float) fmod(x, y);
219 return fmod((double) x, (double) y);
/openbsd-current/usr.bin/lastcomm/
H A Dlastcomm.c136 fmod(delta, (double)SECSPERHOUR) / SECSPERMIN,
137 fmod(delta, (double)SECSPERMIN));
/openbsd-current/gnu/gcc/libstdc++-v3/include/c/
H A Dstd_cmath.h56 #undef fmod macro
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c/
H A Dstd_cmath.h56 #undef fmod macro
/openbsd-current/usr.bin/jot/
H A Djot.c267 if (prec > 0 || (fmod(ender, 1) == 0 && fmod(begin, 1) == 0)) {
276 if (fmod(range, 1) == 0) {
/openbsd-current/gnu/llvm/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); } function
263 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, fmod);
391 using ::fmod;
/openbsd-current/gnu/gcc/libstdc++-v3/include/tr1/
H A Dmath.h64 using std::tr1::fmod;
/openbsd-current/gnu/gcc/gcc/
H A Dfp-test.c65 extern double fmod (double, double);
249 d1 = fmod (d2, d3);
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c_std/
H A Dstd_cmath.h67 #undef fmod macro
402 using ::fmod;
406 fmod(float __x, float __y) { return __gnu_cxx::__c99_binding::fmodf(__x, __y); } function in namespace:std
409 fmod(float __x, float __y)
410 { return ::fmod(static_cast<double>(__x), static_cast<double>(__y)); }
415 fmod(long double __x, long double __y) { return ::fmodl(__x, __y); } function in namespace:std
418 fmod(long double __x, long double __y) function in namespace:std
419 { return ::fmod(static_cast<double>(__x), static_cast<double>(__y)); }
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dfp-test.c65 extern double fmod (double, double);
249 d1 = fmod (d2, d3);
/openbsd-current/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-color-helper.cpp129 double X = C * (1 - std::abs(std::fmod(HPrime, 2.0) - 1));
165 return std::fmod(H0 + T * (H1 - H0) + 720, 360);
/openbsd-current/gnu/gcc/libstdc++-v3/include/c_std/
H A Dstd_cmath.h69 #undef fmod macro
261 using ::fmod;
264 fmod(float __x, float __y) function
268 fmod(long double __x, long double __y) function
/openbsd-current/gnu/gcc/gcc/cp/
H A Dcfns.h265 "fmod",
/openbsd-current/include/
H A Dtgmath.h135 #define fmod(x, y) __tg_simple2(x, y, fmod) macro
/openbsd-current/gnu/gcc/gcc/config/m68k/
H A Dmath-68881.h434 fmod (double x, double y) function
438 __asm ("fmod%.x %2,%0"
/openbsd-current/games/pom/
H A Dpom.c190 *deg = fmod(*deg, 360.0);

Completed in 161 milliseconds

12