/dalvik/vm/compiler/codegen/arm/ |
CalloutHelper.h | 57 double fmod(double a, double b); // OP_REM_DOUBLE[_2ADDR]
|
/prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/ |
tgmath.h | 140 #define fmod(x,y) __TGMATH_REAL_2(x, y, fmod) macro
|
/prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/ |
tgmath.h | 137 #define fmod(x,y) __TGMATH_REAL_2(x, y, fmod) macro
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/ |
tgmath.h | 140 #define fmod(x,y) __TGMATH_REAL_2(x, y, fmod) macro
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/ |
tgmath.h | 137 #define fmod(x,y) __TGMATH_REAL_2(x, y, fmod) macro
|
/external/stlport/stlport/stl/ |
_cmath.h | 345 # 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/webkit/WebCore/platform/graphics/transforms/ |
AffineTransform.cpp | 342 srA[2] = fmod(srA[2], 2.0 * piDouble); 343 srB[2] = fmod(srB[2], 2.0 * piDouble);
|
/bionic/libm/src/ |
e_fmod.c | 95 /* fix point fmod */
|
s_remquo.c | 101 /* fix point fmod */
|
s_remquof.c | 77 /* fix point fmod */
|
math_private.h | 214 #define __ieee754_fmod fmod
|
/external/fdlibm/ |
e_fmod.c | 100 /* fix point fmod */
|
k_standard.c | 506 exc.name = "fmod"; 515 (void) WRITE2("fmod: DOMAIN error\n", 20);
|
/external/webkit/WebCore/html/ |
DateComponents.cpp | 457 double remainder = fmod(value, divider); 464 m_millisecond = static_cast<int>(fmod(msInDay, msPerSecond)); 466 m_second = static_cast<int>(fmod(value, secondsPerMinute)); 468 m_minute = static_cast<int>(fmod(value, minutesPerHour));
|
HTMLInputElement.cpp | 512 // value is greater than step*2^DBL_MANT_DIG, the following fmod() makes 516 double remainder = fmod(doubleValue, step); 534 return fmod(doubleValue, step); [all...] |
/bionic/libm/ |
Makefile-orig | 95 fma.3 fmax.3 fmod.3 hypot.3 ieee.3 ieee_test.3 ilogb.3 j0.3 \ 130 MLINKS+=fmod.3 fmodf.3
|
/bionic/libm/man/ |
math.3 | 121 fmod positive remainder
|
/external/v8/src/ |
platform-nullos.cc | 50 // Give V8 the opportunity to override the default fmod behavior.
|
platform-posix.cc | 61 return fmod(x, y);
|
/external/webkit/JavaScriptCore/wtf/ |
DateMath.cpp | 193 double result = fmod(ms, msPerDay); 210 double result = fmod(floor(ms / msPerSecond), secondsPerMinute); 218 double result = fmod(floor(ms / msPerMinute), minutesPerHour); 226 double result = fmod(floor(ms/msPerHour), hoursPerDay);
|
/external/webkit/WebCore/xml/ |
XPathPredicate.cpp | 95 return fmod(leftVal, rightVal);
|
/external/webkit/WebCore/svg/animation/ |
SVGSMILElement.cpp | 789 if (fmod(repeatingDuration.value(), simpleDuration.value() == 0.)) 794 SMILTime simpleTime = fmod(activeTime.value(), simpleDuration.value()); [all...] |
/external/webkit/WebCore/page/animation/ |
AnimationBase.cpp | [all...] |
/bionic/libm/include/ |
math.h | 228 double fmod(double, double);
|
/dalvik/vm/mterp/c/ |
header.c | 21 #include <math.h> // needed for fmod, fmodf
|