Home
last modified time | relevance | path

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

1234

/openbsd/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/lib/libm/arch/i387/
H A De_fmod.S9 ENTRY(fmod)
18 END(fmod)
/openbsd/lib/libm/src/
H A De_fmod.c27 fmod(double x, double y) in fmod() function
131 DEF_STD(fmod);
132 LDBL_MAYBE_UNUSED_CLONE(fmod);
H A De_remainder.c51 if (hp<=0x7fdfffff) x = fmod(x,p+p); /* now x < 2p */ in remainder()
/openbsd/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/gnu/lib/libstdc++/libstdc++/include/c_std/
H A 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/usr.bin/jot/
H A Djot.c267 if (prec > 0 || (fmod(ender, 1) == 0 && fmod(begin, 1) == 0)) { in main()
276 if (fmod(range, 1) == 0) { in main()
/openbsd/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); } 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;
/openbsd/usr.bin/lastcomm/
H A Dlastcomm.c136 fmod(delta, (double)SECSPERHOUR) / SECSPERMIN, in main()
137 fmod(delta, (double)SECSPERMIN)); in main()
/openbsd/gnu/gcc/libstdc++-v3/libmath/
H A Dstubs.c211 return (float) fmod(x, y); in fmodf()
219 return fmod((double) x, (double) y); in fmodl()
/openbsd/gnu/gcc/libstdc++-v3/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
/openbsd/gnu/gcc/fixincludes/tests/base/
H A Dmath.h67 extern double fmod(double, double);
/openbsd/gnu/usr.bin/gcc/gcc/
H A Dfp-test.c65 extern double fmod (double, double);
249 d1 = fmod (d2, d3); in main()
/openbsd/gnu/gcc/gcc/
H A Dfp-test.c65 extern double fmod (double, double);
249 d1 = fmod (d2, d3); in main()
/openbsd/gnu/llvm/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()
/openbsd/gnu/lib/libstdc++/libstdc++/include/c_compatibility/
H A Dmath.h57 using std::fmod;
/openbsd/gnu/gcc/libstdc++-v3/include/c_compatibility/
H A Dmath.h57 using std::fmod;
/openbsd/gnu/lib/libstdc++/libstdc++/include/c/
H A Dstd_cmath.h56 #undef fmod
/openbsd/gnu/gcc/libstdc++-v3/include/c/
H A Dstd_cmath.h56 #undef fmod
/openbsd/include/
H A Dtgmath.h135 #define fmod(x, y) __tg_simple2(x, y, fmod) macro
/openbsd/gnu/gcc/libstdc++-v3/include/tr1/
H A Dmath.h64 using std::tr1::fmod;
/openbsd/lib/libm/
H A DSymbols.map162 fmod;
/openbsd/games/pom/
H A Dpom.c190 *deg = fmod(*deg, 360.0); in adj360()

1234