HomeSort by relevance Sort by last modified time
    Searched refs:fmod (Results 26 - 50 of 334) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymath.h 32 extern double fmod (double, double);
  /prebuilts/go/darwin-x86/src/math/
all_test.go 297 var fmod = []float64{ var
1117 NaN(), // fmod(-Inf, -Inf)
1118 NaN(), // fmod(-Inf, -Pi)
1119 NaN(), // fmod(-Inf, 0)
1120 NaN(), // fmod(-Inf, Pi)
1121 NaN(), // fmod(-Inf, +Inf)
1122 NaN(), // fmod(-Inf, NaN)
1123 -Pi, // fmod(-Pi, -Inf)
1124 NaN(), // fmod(-Pi, 0)
1125 -Pi, // fmod(-Pi, +Inf
    [all...]
  /prebuilts/go/linux-x86/src/math/
all_test.go 297 var fmod = []float64{ var
1117 NaN(), // fmod(-Inf, -Inf)
1118 NaN(), // fmod(-Inf, -Pi)
1119 NaN(), // fmod(-Inf, 0)
1120 NaN(), // fmod(-Inf, Pi)
1121 NaN(), // fmod(-Inf, +Inf)
1122 NaN(), // fmod(-Inf, NaN)
1123 -Pi, // fmod(-Pi, -Inf)
1124 NaN(), // fmod(-Pi, 0)
1125 -Pi, // fmod(-Pi, +Inf
    [all...]
  /external/eigen/Eigen/src/Geometry/
Rotation2D.h 85 Scalar tmp = numext::fmod(m_angle,Scalar(2*EIGEN_PI));
91 Scalar tmp = numext::fmod(m_angle,Scalar(2*EIGEN_PI));
  /external/skia/bench/
SKPAnimationBench.cpp 57 double t = fmod(animationTimeMs / fZoomPeriodMs, 1.0); // t is in [0, 1).
  /external/clang/lib/Headers/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
211 using ::fmod;
  /external/v8/src/
codegen.cc 26 // Workaround MS fmod bugs. ECMA-262 says:
31 x = fmod(x, y);
41 double result = std::fmod(x, y);
45 return std::fmod(x, y);
  /prebuilts/clang/host/darwin-x86/clang-3016494/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
211 using ::fmod;
  /prebuilts/clang/host/darwin-x86/clang-3217047/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
211 using ::fmod;
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
211 using ::fmod;
  /prebuilts/clang/host/darwin-x86/clang-3362437/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
211 using ::fmod;
  /prebuilts/clang/host/darwin-x86/clang-3688880/lib64/clang/4.0/include/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
225 using ::fmod;
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
225 using ::fmod;
  /prebuilts/clang/host/linux-x86/clang-3016494/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
211 using ::fmod;
  /prebuilts/clang/host/linux-x86/clang-3217047/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
211 using ::fmod;
  /prebuilts/clang/host/linux-x86/clang-3289846/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
211 using ::fmod;
  /prebuilts/clang/host/linux-x86/clang-3362437/lib64/clang/3.8/include/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
211 using ::fmod;
  /prebuilts/clang/host/linux-x86/clang-3688880/lib64/clang/4.0/include/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
225 using ::fmod;
  /prebuilts/clang/host/linux-x86/clang-3859424/lib64/clang/4.0/include/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
225 using ::fmod;
  /prebuilts/sdk/renderscript/clang-include/
__clang_cuda_math_forward_declares.h 91 __DEVICE__ double fmod(double, double);
92 __DEVICE__ float fmod(float, float);
211 using ::fmod;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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...]
  /prebuilts/gdb/darwin-x86/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...]
  /prebuilts/gdb/linux-x86/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...]
  /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...]
  /prebuilts/python/linux-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 1794 milliseconds

12 3 4 5 6 7 8 91011>>