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

12

/external/webkit/Source/WebCore/html/
H A DBaseDateAndTimeInputType.cpp120 return fmod(doubleValue, step);
170 if (!fmod(step, msecPerMinute))
172 if (!fmod(step, msecPerSecond))
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));
/external/webkit/Source/WebCore/rendering/
H A DRenderProgress.cpp67 return m_animating ? (fmod((currentTime() - m_animationStartTime), m_animationDuration) / m_animationDuration) : 0;
/external/stlport/stlport/stl/
H A D_cmath.h345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
371 _STLP_DMATH_INLINE2(fmod)
442 _STLP_DEF_MATH_INLINE2(fmod, fmod)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
564 using ::fmod;
/external/stlport/test/unit/
H A Dcmath_test.cpp79 CPPUNIT_CHECK( are_equals(std::fmod(1.5, 1.0), 0.5) );
113 CPPUNIT_CHECK( are_equals(std::fmod(1.5f, 1.0f), 0.5f) );
139 CPPUNIT_CHECK( are_equals(std::fmod(1.5l, 1.0l), 0.5l) );
/external/skia/include/core/
H A DSkFloatingPoint.h42 #define sk_float_mod(x,y) (float)::fmod(x,y)
/external/webkit/Source/JavaScriptCore/wtf/
H A DMathExtras.h180 // Work around a bug in the Microsoft CRT, where fmod(x, +-infinity) yields NaN instead of x.
181 inline double wtf_fmod(double x, double y) { return (!isinf(x) && isinf(y)) ? x : fmod(x, y); }
187 #define fmod(x, y) wtf_fmod(x, y) macro
H A DDateMath.cpp201 double result = fmod(ms, msPerDay);
218 double result = fmod(floor(ms / msPerSecond), secondsPerMinute);
226 double result = fmod(floor(ms / msPerMinute), minutesPerHour);
234 double result = fmod(floor(ms/msPerHour), hoursPerDay);
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DAffineTransform.cpp356 srA[2] = fmod(srA[2], 2.0 * piDouble);
357 srB[2] = fmod(srB[2], 2.0 * piDouble);
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DPathOpenVG.cpp316 startAngle = fmod((2.0 * piDouble) - startAngle, 2.0 * piDouble);
317 endAngle = fmod((2.0 * piDouble) - endAngle, 2.0 * piDouble);
319 // Make it so that endAngle > startAngle. fmod() above takes care of
H A DPainterOpenVG.cpp939 if (fmod(m_state->strokeThickness + 0.5, 2.0) < 1.0)
1136 if ((fmod(effectivePoint.x() + 0.01, 1.0) > 0.02 || fmod(effectivePoint.y() + 0.01, 1.0) > 0.02)
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h164 /// double fmod(double x, double y);
165 fmod, enumerator in enum:llvm::LibFunc::Func
/external/valgrind/main/memcheck/tests/x86/
H A Dmore_x86_fp.c39 printf("a=%f b=%f fmod(a, b)=%f\n", a, b, fmod(a, b));
H A Dmore_x86_fp.stdout.exp5 a=2.000000 b=3.000000 fmod(a, b)=2.000000
20 a=1.400000 b=-5.000000 fmod(a, b)=1.400000
/external/webkit/Source/WebCore/xml/
H A DXPathPredicate.cpp95 return fmod(leftVal, rightVal);
/external/libxml2/
H A Dtrio.c263 # define fmodl(x,y) fmod((double)(x),(double)(y))
/external/skia/src/gpu/
H A Dapp-android.cpp171 value = ::fmod(value, SkScalarToDouble(period));
/external/v8/src/
H A Dconversions.cc392 chars[static_cast<int>(fmod(integer_part, radix))];
H A Dplatform-posix.cc128 return fmod(x, y);
/external/webkit/Source/JavaScriptCore/runtime/
H A DNumberPrototype.cpp258 int remainderDigit = static_cast<int>(fmod(d, radix));
/external/clang/lib/Headers/
H A Dtgmath.h790 // fmod
798 __tg_fmod(double __x, double __y) {return fmod(__x, __y);}
804 #undef fmod macro
805 #define fmod(__x, __y) __tg_fmod(__tg_promote2((__x), (__y))(__x), \ macro
/external/clang/lib/include/
H A Dtgmath.h790 // fmod
798 __tg_fmod(double __x, double __y) {return fmod(__x, __y);}
804 #undef fmod macro
805 #define fmod(__x, __y) __tg_fmod(__tg_promote2((__x), (__y))(__x), \ macro
/external/webkit/Source/WebCore/svg/animation/
H A DSVGSMILElement.cpp837 if (fmod(repeatingDuration.value(), !simpleDuration.value()))
842 SMILTime simpleTime = fmod(activeTime.value(), simpleDuration.value());
/external/webkit/Source/WebCore/page/animation/
H A DAnimationBase.cpp1243 double durationLeft = m_animation->duration() - fmod(elapsedDuration, m_animation->duration());
1250 double durationLeft = m_animation->duration() - fmod(elapsedDuration, m_animation->duration());
1347 durationLeft = m_animation->duration() > 0 ? (m_animation->duration() - fmod(elapsedDuration, m_animation->duration())) : 0;
/external/qemu/audio/
H A Dfmodaudio.c24 #include <fmod.h>
29 #define AUDIO_CAP "fmod"
676 .name = "fmod",
677 .descr = "FMOD 3.xx http://www.fmod.org",

Completed in 8701 milliseconds

12