Searched refs:fmod (Results 1 – 15 of 15) sorted by relevance
/external/webkit/JavaScriptCore/runtime/ |
D | JSValue.cpp | 61 double d32 = fmod(trunc(d), D32); in toInt32SlowCase() 81 double d32 = fmod(trunc(d), D32); in toUInt32SlowCase()
|
D | DateMath.cpp | 154 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()
|
D | NumberPrototype.cpp | 171 int remainderDigit = static_cast<int>(fmod(d, radix)); in numberProtoFuncToString()
|
/external/webkit/JavaScriptCore/wtf/ |
D | MathExtras.h | 151 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/ |
D | TransformationMatrix.cpp | 189 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/ |
D | SkFloatingPoint.h | 37 #define sk_float_mod(x,y) (float)::fmod(x,y)
|
/external/webkit/WebCore/xml/ |
D | XPathPredicate.cpp | 95 return fmod(leftVal, rightVal); in evaluate()
|
/external/webkit/WebCore/page/animation/ |
D | AnimationBase.cpp | 849 … 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/ |
D | SVGSMILElement.cpp | 766 if (fmod(repeatingDuration.value(), simpleDuration.value() == 0.)) in calculateAnimationPercentAndRepeat() 771 SMILTime simpleTime = fmod(activeTime.value(), simpleDuration.value()); in calculateAnimationPercentAndRepeat()
|
/external/icu4c/common/ |
D | putil.c | 385 return fmod(x, y); in uprv_fmod()
|
/external/skia/src/animator/ |
D | SkScriptTokenizer.cpp | 1271 #define testRemainder(exp1, exp2) { #exp1 "%" #exp2, SkOperand2::kScalar, 0, (int) (fmod(exp1, exp2…
|
/external/webkit/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 1892 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/ |
D | xpath.c | 7460 ctxt->value->floatval = fmod(arg1, arg2); in xmlXPathModValues() 9475 f = fmod((v), INT_MAX); \
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog-2007-10-14 | 9750 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/ |
D | ChangeLog-2007-10-14 | 22420 …Include MathExtras.h here so we get a version of fmod that works around a bug in the Microsoft CRT.
|