HomeSort by relevance Sort by last modified time
    Searched refs:fmod (Results 1 - 25 of 225) sorted by null

1 2 3 4 5 6 7 8 9

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestFmod.rs 26 return fmod(inX, inY);
31 return fmod(inX, inY);
36 return fmod(inX, inY);
41 return fmod(inX, inY);
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 68 using ::fmod;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationClock.cpp 63 const double frameShift = fmod(currentTime - m_time, approximateFrameTime);
TimingCalculations.h 117 return !fmod(iterationCount + iterationStart, 1);
136 return fmod(scaledActiveTime, iterationDuration);
172 const bool currentIterationIsOdd = fmod(currentIteration, 2) >= 1;
  /bionic/libstdc++/include/
cmath 70 using ::fmod;
  /ndk/sources/cxx-stl/gabi++/include/
cmath 70 using ::fmod;
  /ndk/sources/cxx-stl/system/include/
cmath 70 using ::fmod;
  /prebuilts/misc/common/swig/include/2.0.11/
math.i 66 extern double fmod(double x, double y);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cmath 68 using ::fmod;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cmath 68 using ::fmod;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cmath 70 using ::fmod;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cmath 70 using ::fmod;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cmath 70 using ::fmod;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cmath 70 using ::fmod;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cmath 70 using ::fmod;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cmath 70 using ::fmod;
  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cmath 70 using ::fmod;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/gabi++/include/
cmath 70 using ::fmod;
  /prebuilts/ndk/9/sources/cxx-stl/system/include/
cmath 70 using ::fmod;
  /bionic/libm/
fake_long_double.c 30 long double fmodl(long double a1, long double a2) { return fmod(a1, a2); }
  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtrasTest.cpp 191 EXPECT_EQ(0.0, fmod(0.0, posInf));
192 EXPECT_EQ(7.0, fmod(7.0, posInf));
193 EXPECT_EQ(-7.0, fmod(-7.0, posInf));
194 EXPECT_EQ(0.0, fmod(0.0, negInf));
195 EXPECT_EQ(7.0, fmod(7.0, negInf));
196 EXPECT_EQ(-7.0, fmod(-7.0, negInf));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderProgress.cpp 63 return m_animating ? (fmod((currentTime() - m_animationStartTime), m_animationDuration) / m_animationDuration) : 0;
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pymath.h 32 extern double fmod (double, double);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymath.h 32 extern double fmod (double, double);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_math.py 418 self.assertRaises(TypeError, math.fmod)
419 self.ftest('fmod(10,1)', math.fmod(10,1), 0)
420 self.ftest('fmod(10,0.5)', math.fmod(10,0.5), 0)
421 self.ftest('fmod(10,1.5)', math.fmod(10,1.5), 1)
422 self.ftest('fmod(-10,1)', math.fmod(-10,1), 0)
423 self.ftest('fmod(-10,0.5)', math.fmod(-10,0.5), 0
    [all...]

Completed in 808 milliseconds

1 2 3 4 5 6 7 8 9