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

1234

/macosx-10.9.5/ksh-20/ksh/src/cmd/INIT/
H A Dm.c32 fmod(100.234, 11.0);
/macosx-10.9.5/emacs-92/emacs/src/m/
H A Dparagon.h10 #define drem fmod
/macosx-10.9.5/groff-38/groff/src/libs/libgroff/
H A Dfmod.c22 double fmod(x, y) function
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/library/
H A Dfmath.tcl21 sin sinh sqrt tan tanh fmod pow atan2 abs double int round
40 proc fmod {x n} {uplevel 1 [list expr fmod($x,$n)]} procedure
/macosx-10.9.5/Chess-310.5/Sources/
H A DMBCBoardAnimation.mm56 a->fToAzimuth = fmod(a->fFromAzimuth + 180.0f, 360.0f);
H A DMBCBoardViewMouse.mm454 fRawAzimuth = fmod(fRawAzimuth+360.0f, 360.0f);
455 float angle = fmod((fAzimuth = fRawAzimuth), 90.0f);
475 fRawAzimuth = fmod(fRawAzimuth+360.0f, 360.0f);
476 float angle = fmod((fAzimuth = fRawAzimuth), 90.0f);
/macosx-10.9.5/swig-10/Lib/
H A Dmath.i69 extern double fmod(double x, double y);
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/demos/mathswig/
H A Dmathswig.i44 double fmod(double, double);
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/tests/
H A Dlibm.test32 ceil fmod sin}] {
38 atan2 - fmod - hypot - pow {
112 {double fmod(double, double)}
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderProgress.cpp70 return m_animating ? (fmod((currentTime() - m_animationStartTime), m_animationDuration) / m_animationDuration) : 0;
/macosx-10.9.5/groff-38/groff/src/preproc/pic/
H A Dpic.h48 double fmod(double, double);
/macosx-10.9.5/ruby-104/ruby/missing/
H A Dlgamma_r.c73 *signp = (fmod(i, 2.0) != 0.0) ? 1 : -1;
H A Dtgamma.c87 sign = (fmod(i, 2.0) != 0.0) ? 1 : -1;
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/tests/
H A Dfmath.test6 # exp, log, log10, sqrt, fabs, floor, ceil, fmod, pow.
118 Test fmath-1.19 {fmod tests} {
119 fchecknum [fmod 1.2*3 1.0/.25] 3.6
/macosx-10.9.5/shell_cmds-175/lastcomm/
H A Dlastcomm.c150 floor(fmod(delta, SECSPERHOUR) / SECSPERMIN),
151 fmod(delta, SECSPERMIN));
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/tr1/
H A Dmath.h64 using std::tr1::fmod;
/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/generic/
H A DjkSynthesis.c357 ph = fmod (ph + LIN(mf->freq,frac)/si->rate,1.0);
369 ph = fmod (ph + LIN(mf->freq,frac)/si->rate,1.0);
387 ph = fmod (ph + LIN(mf->freq,frac)/si->rate,1.0);
407 ph = fmod (ph + LIN(mf->freq,frac)/si->rate,1.0);
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/demos/
H A Dlibm.tcl57 {double fmod(double, double)}
/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DAnimationBase.cpp485 double durationLeft = m_animation->duration() - fmod(elapsedDuration, m_animation->duration());
492 double durationLeft = m_animation->duration() - fmod(elapsedDuration, m_animation->duration());
619 durationLeft = m_animation->duration() > 0 ? (m_animation->duration() - fmod(elapsedDuration, m_animation->duration())) : 0;
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DDateComponents.cpp504 double remainder = fmod(value, divider);
511 m_millisecond = static_cast<int>(fmod(msInDay, msPerSecond));
513 m_second = static_cast<int>(fmod(value, secondsPerMinute));
515 m_minute = static_cast<int>(fmod(value, minutesPerHour));
/macosx-10.9.5/tcl-102/tcl_ext/tclvfs/tclvfs/library/template/
H A Dtdelta.tcl383 set a(k+1,l+1)_ [expr fmod(${a(k+1,l+1)_},$Mod)]
384 set b(k+1,l+1)_ [expr fmod(${b(k+1,l+1)_},$Mod)]
409 set a(k,l)_ [expr fmod(${a(k,i)_},$Mod)]
410 set b(k,l)_ [expr fmod(${b(k,i)_},$Mod)]
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSDOMBinding.cpp339 x = fmod(x, 256); // 2^8.
370 return static_cast<uint8_t>(fmod(x, 256)); // 2^8.
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/transforms/
H A DAffineTransform.cpp322 srA.angle = fmod(srA.angle, 2 * piDouble);
323 srB.angle = fmod(srB.angle, 2 * piDouble);
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/widget/
H A Druler.tcl198 if {fmod($x, $lgi) == 0.0} {
208 } elseif {fmod($x, $medi) == 0.0} {
235 if {fmod($y, $lgi) == 0.0} {
245 } elseif {fmod($y, $medi) == 0.0} {
/macosx-10.9.5/tcl-102/tk/tk/generic/ttk/
H A DttkProgress.c321 fraction = fmod(fabs(fraction), 2.0);
419 value = fmod(value, maximum);

Completed in 311 milliseconds

1234