/external/webkit/Source/WebCore/html/ |
D | BaseDateAndTimeInputType.cpp | 120 return fmod(doubleValue, step); in stepMismatch() 170 if (!fmod(step, msecPerMinute)) in serialize() 172 if (!fmod(step, msecPerSecond)) in serialize()
|
D | DateComponents.cpp | 504 double remainder = fmod(value, divider); in positiveFmod() 511 m_millisecond = static_cast<int>(fmod(msInDay, msPerSecond)); in setMillisecondsSinceMidnightInternal() 513 m_second = static_cast<int>(fmod(value, secondsPerMinute)); in setMillisecondsSinceMidnightInternal() 515 m_minute = static_cast<int>(fmod(value, minutesPerHour)); in setMillisecondsSinceMidnightInternal()
|
/external/llvm/test/CodeGen/X86/ |
D | 2012-04-09-TwoAddrPassBug.ll | 25 %13 = tail call double @fmod(double %8, double 0.000000e+00) nounwind 34 declare double @fmod(double, double)
|
/external/stlport/test/unit/ |
D | cmath_test.cpp | 79 CPPUNIT_CHECK( are_equals(std::fmod(1.5, 1.0), 0.5) ); in import_checks() 113 CPPUNIT_CHECK( are_equals(std::fmod(1.5f, 1.0f), 0.5f) ); in import_checks() 139 CPPUNIT_CHECK( are_equals(std::fmod(1.5l, 1.0l), 0.5l) ); in import_checks()
|
/external/stlport/stlport/stl/ |
D | _cmath.h | 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh… 371 _STLP_DMATH_INLINE2(fmod) in _STLP_DMATH_INLINE() 442 _STLP_DEF_MATH_INLINE2(fmod, fmod) 515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sin… 564 using ::fmod;
|
/external/valgrind/main/memcheck/tests/x86/ |
D | more_x86_fp.stdout.exp | 5 a=2.000000 b=3.000000 fmod(a, b)=2.000000 20 a=1.400000 b=-5.000000 fmod(a, b)=1.400000
|
D | more_x86_fp.c | 39 printf("a=%f b=%f fmod(a, b)=%f\n", a, b, fmod(a, b)); in test_fops()
|
/external/llvm/test/Transforms/ConstProp/ |
D | calls.ll | 136 ; FNOBUILTIN: %1 = call double @fmod(double 3.000000e+00, double 3.000000e+00) 137 %1 = call double @fmod(double 3.000000e+00, double 3.000000e+00) 140 declare double @fmod(double, double)
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderProgress.cpp | 67 …return m_animating ? (fmod((currentTime() - m_animationStartTime), m_animationDuration) / m_animat… in animationProgress()
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | MathExtras.h | 181 inline double wtf_fmod(double x, double y) { return (!isinf(x) && isinf(y)) ? x : fmod(x, y); } in wtf_fmod() 187 #define fmod(x, y) wtf_fmod(x, y) macro
|
D | DateMath.cpp | 201 double result = fmod(ms, msPerDay); in msToMilliseconds() 218 double result = fmod(floor(ms / msPerSecond), secondsPerMinute); in msToSeconds() 226 double result = fmod(floor(ms / msPerMinute), minutesPerHour); in msToMinutes() 234 double result = fmod(floor(ms/msPerHour), hoursPerDay); in msToHours()
|
/external/llvm/test/Transforms/SimplifyLibCalls/ |
D | win-math.ll | 156 declare double @fmod(double %x, double %y) 160 ; WIN32: double @fmod 163 %3 = call double @fmod(double %1, double %2)
|
/external/webkit/Source/WebCore/platform/graphics/transforms/ |
D | AffineTransform.cpp | 356 srA[2] = fmod(srA[2], 2.0 * piDouble); in blend() 357 srB[2] = fmod(srB[2], 2.0 * piDouble); in blend()
|
/external/skia/include/core/ |
D | SkFloatingPoint.h | 42 #define sk_float_mod(x,y) (float)::fmod(x,y)
|
/external/llvm/include/llvm/Target/ |
D | TargetLibraryInfo.h | 102 fmod, enumerator
|
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
D | PathOpenVG.cpp | 316 startAngle = fmod((2.0 * piDouble) - startAngle, 2.0 * piDouble); in addArc() 317 endAngle = fmod((2.0 * piDouble) - endAngle, 2.0 * piDouble); in addArc()
|
D | PainterOpenVG.cpp | 939 if (fmod(m_state->strokeThickness + 0.5, 2.0) < 1.0) in drawLine() 1136 if ((fmod(effectivePoint.x() + 0.01, 1.0) > 0.02 || fmod(effectivePoint.y() + 0.01, 1.0) > 0.02) in drawText()
|
/external/webkit/Source/WebCore/xml/ |
D | XPathPredicate.cpp | 95 return fmod(leftVal, rightVal); in evaluate()
|
/external/libxslt/libxslt/ |
D | numbers.c | 197 val = digit_zero + (int)fmod(number, 10.0); in xsltNumberFormatDecimal() 247 *(--pointer) = alpha_list[((int)fmod(number, alpha_size))]; in xsltNumberFormatAlpha() 1327 if (fmod(number, 10.0) >= 1.0) in xsltFormatNumberConversion()
|
/external/clang/lib/Headers/ |
D | tgmath.h | 798 __tg_fmod(double __x, double __y) {return fmod(__x, __y);} in __tg_fmod() 804 #undef fmod 805 #define fmod(__x, __y) __tg_fmod(__tg_promote2((__x), (__y))(__x), \ macro
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | NumberPrototype.cpp | 258 int remainderDigit = static_cast<int>(fmod(d, radix)); in numberProtoFuncToString()
|
/external/v8/src/ |
D | conversions.cc | 392 chars[static_cast<int>(fmod(integer_part, radix))]; in DoubleToRadixCString()
|
D | platform-posix.cc | 128 return fmod(x, y); in modulo()
|
/external/skia/src/gpu/ |
D | app-android.cpp | 171 value = ::fmod(value, SkScalarToDouble(period)); in GetAnimScalar()
|
/external/webkit/Source/WebCore/page/animation/ |
D | AnimationBase.cpp | 1243 … double durationLeft = m_animation->duration() - fmod(elapsedDuration, m_animation->duration()); in fireAnimationEventsIfNeeded() 1250 … double durationLeft = m_animation->duration() - fmod(elapsedDuration, m_animation->duration()); in fireAnimationEventsIfNeeded() 1347 …durationLeft = m_animation->duration() > 0 ? (m_animation->duration() - fmod(elapsedDuration, m_an… in getTimeToNextEvent()
|