Home
last modified time | relevance | path

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

/external/webkit/JavaScriptCore/runtime/
DJSValue.cpp61 double d32 = fmod(trunc(d), D32); in toInt32SlowCase()
81 double d32 = fmod(trunc(d), D32); in toUInt32SlowCase()
DDateMath.cpp154 double result = fmod(ms, msPerDay); in msToMilliseconds()
171 double result = fmod(floor(ms / msPerSecond), secondsPerMinute); in msToSeconds()
179 double result = fmod(floor(ms / msPerMinute), minutesPerHour); in msToMinutes()
187 double result = fmod(floor(ms/msPerHour), hoursPerDay); in msToHours()
DNumberPrototype.cpp171 int remainderDigit = static_cast<int>(fmod(d, radix)); in numberProtoFuncToString()
/external/webkit/JavaScriptCore/wtf/
DMathExtras.h151 inline double wtf_fmod(double x, double y) { return (!isinf(x) && isinf(y)) ? x : fmod(x, y); } in wtf_fmod()
157 #define fmod(x, y) wtf_fmod(x, y) macro
/external/webkit/WebCore/platform/graphics/transforms/
DTransformationMatrix.cpp189 srA[2] = fmod(srA[2], 2.0 * piDouble); in blend()
190 srB[2] = fmod(srB[2], 2.0 * piDouble); in blend()
/external/skia/include/core/
DSkFloatingPoint.h37 #define sk_float_mod(x,y) (float)::fmod(x,y)
/external/webkit/WebCore/xml/
DXPathPredicate.cpp95 return fmod(leftVal, rightVal); in evaluate()
/external/webkit/WebCore/page/animation/
DAnimationBase.cpp849 … double durationLeft = m_animation->duration() - fmod(elapsedDuration, m_animation->duration()); in fireAnimationEventsIfNeeded()
856 … double durationLeft = m_animation->duration() - fmod(elapsedDuration, m_animation->duration()); in fireAnimationEventsIfNeeded()
942 durationLeft = m_animation->duration() - fmod(elapsedDuration, m_animation->duration()); in goIntoEndingOrLoopingState()
/external/webkit/WebCore/svg/animation/
DSVGSMILElement.cpp766 if (fmod(repeatingDuration.value(), simpleDuration.value() == 0.)) in calculateAnimationPercentAndRepeat()
771 SMILTime simpleTime = fmod(activeTime.value(), simpleDuration.value()); in calculateAnimationPercentAndRepeat()
/external/icu4c/common/
Dputil.c385 return fmod(x, y); in uprv_fmod()
/external/skia/src/animator/
DSkScriptTokenizer.cpp1271 #define testRemainder(exp1, exp2) { #exp1 "%" #exp2, SkOperand2::kScalar, 0, (int) (fmod(exp1, exp2…
/external/webkit/JavaScriptCore/interpreter/
DInterpreter.cpp1892 JSValuePtr result = jsNumber(callFrame, fmod(d, divisorValue.toNumber(callFrame))); in privateExecute()
5633 JSValuePtr result = jsNumber(ARG_globalData, fmod(d, divisorValue.toNumber(callFrame))); in cti_op_mod()
/external/libxml2/
Dxpath.c7460 ctxt->value->floatval = fmod(arg1, arg2); in xmlXPathModValues()
9475 f = fmod((v), INT_MAX); \
/external/webkit/JavaScriptCore/
DChangeLog-2007-10-149750 work around MSVCRT's fmod function returning NaN for fmod(x, infinity) instead of x
9760 Added includes of MathExtras.h to all files using fmod.
24719 proper handling for negative results from fmod.
/external/webkit/WebCore/
DChangeLog-2007-10-1422420 …Include MathExtras.h here so we get a version of fmod that works around a bug in the Microsoft CRT.