/external/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | common.inl | 14 return detail::functor2<T, P, vecType>::call(std::fmod, a, b); 94 // fmod 96 GLM_FUNC_QUALIFIER genType fmod(genType x, genType y) function 98 return fmod(tvec1<genType>(x), y).x; 102 GLM_FUNC_QUALIFIER vecType<T, P> fmod(vecType<T, P> const & x, T y) function 108 GLM_FUNC_QUALIFIER vecType<T, P> fmod(vecType<T, P> const & x, vecType<T, P> const & y) function
|
D | common.hpp | 48 GLM_FUNC_DECL vecType<T, P> fmod(vecType<T, P> const & v);
|
/external/llvm-project/llvm/test/Transforms/DCE/ |
D | calls-errno.ll | 15 declare double @fmod(double, double) nounwind 87 ; fmod(inf, nan) is nan 88 %fmod1 = call double @fmod(double 0x7FF0000000000000, double 0x7FF0000000000001) 90 ; fmod(inf, 1) is a domain error 91 ; CHECK-NEXT: %fmod2 = call double @fmod(double 0x7FF0000000000000, double 1.000000e+00) 92 %fmod2 = call double @fmod(double 0x7FF0000000000000, double 1.000000e+00)
|
/external/llvm-project/llvm/test/CodeGen/VE/Scalar/ |
D | fp_frem.ll | 18 ;;; This is the same output as a libm ‘fmod’ function, but without any 51 ; CHECK-NEXT: lea %s2, fmod@lo 53 ; CHECK-NEXT: lea.sl %s12, fmod@hi(, %s2) 93 ; CHECK-NEXT: lea %s0, fmod@lo 95 ; CHECK-NEXT: lea.sl %s12, fmod@hi(, %s0) 143 ; CHECK-NEXT: lea %s0, fmod@lo 145 ; CHECK-NEXT: lea.sl %s12, fmod@hi(, %s0)
|
/external/tensorflow/tensorflow/core/kernels/ |
D | cwise_op_mod.cc | 20 REGISTER2(BinaryOp, CPU, "Mod", functor::fmod, float, double); 22 REGISTER2(BinaryOp, CPU, "TruncateMod", functor::fmod, float, double);
|
/external/skia/tools/timer/ |
D | TimeUtils.h | 30 value = ::fmod(value, (double)(period)); 42 double value = ::fmod(time + phase, period); in PingPong()
|
/external/python/cpython2/Lib/test/ |
D | 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) 424 self.ftest('fmod(-10,1.5)', math.fmod(-10,1.5), -1) 425 self.assertTrue(math.isnan(math.fmod(NAN, 1.))) 426 self.assertTrue(math.isnan(math.fmod(1., NAN))) 427 self.assertTrue(math.isnan(math.fmod(NAN, NAN))) [all …]
|
/external/llvm-project/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/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/skqp/modules/skottie/gm/ |
D | SkottieGM.cpp | 79 fAnimation->seek(std::fmod(timer.secs(), duration) / duration); in onAnimate() 130 fAnimation->seek(std::fmod(timer.secs(), duration) / duration); in onAnimate() 201 fAnimation->seek(std::fmod(timer.secs(), duration) / duration); in onAnimate()
|
/external/skia/modules/skottie/gm/ |
D | SkottieGM.cpp | 79 fAnimation->seek(std::fmod(1e-9 * nanos, duration) / duration); in onAnimate() 137 fAnimation->seek(std::fmod(1e-9 * nanos, duration) / duration); in onAnimate() 221 fAnimation->seek(std::fmod(1e-9 * nanos, duration) / duration); in onAnimate()
|
/external/skqp/tools/timer/ |
D | SkAnimTimer.h | 118 value = ::fmod(value, SkScalarToDouble(period)); 134 double value = ::fmod(t + phase, period); in PingPong()
|
/external/oboe/samples/RhythmGame/third_party/glm/gtc/ |
D | round.inl | 79 return Source + (Multiple - std::fmod(Source, Multiple)); 81 return Source + std::fmod(-Source, Multiple); 122 return Source - std::fmod(Source, Multiple); 124 return Source - std::fmod(Source, Multiple) - Multiple; 170 return Source - std::fmod(Source, Multiple); 174 return Tmp - std::fmod(Tmp, Multiple) - Multiple;
|
/external/clang/lib/Headers/ |
D | __clang_cuda_math_forward_declares.h | 91 __DEVICE__ double fmod(double, double); 92 __DEVICE__ float fmod(float, float); 211 using ::fmod;
|
/external/llvm-project/clang/lib/Headers/ |
D | __clang_cuda_math_forward_declares.h | 77 __DEVICE__ double fmod(double, double); 78 __DEVICE__ float fmod(float, float); 221 using ::fmod;
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | performance-type-promotion-in-math-fn.cpp | 28 double fmod(double, double); 137 fmod(a, b); in check_all_fns()
|
/external/llvm-project/lld/test/ELF/Inputs/ |
D | undefined-error.s | 1 callq fmod@PLT
|
/external/llvm-project/libclc/generic/include/clc/math/ |
D | fmod.h | 1 #define __CLC_FUNCTION fmod
|
/external/ltp/testcases/misc/math/float/ |
D | float_power.c | 35 {FUNC_FMOD, 50, fmod, "fmod", "fmod_inp.ref", "fmod_out.ref",
|
/external/llvm-project/libclc/generic/lib/math/ |
D | fmod.cl | 4 #define __CLC_FUNC fmod
|
/external/eigen/Eigen/src/Geometry/ |
D | 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/rust/crates/libm/src/math/ |
D | mod.rs | 119 mod fmod; module 227 pub use self::fmod::fmod;
|
/external/deqp-deps/glslang/Test/ |
D | hlsl.intrinsics.vert | 29 fmod(inF0, inF1); 99 fmod(inF0, inF1); 169 fmod(inF0, inF1); 239 fmod(inF0, inF1); 302 fmod(inF0, inF1); \
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/ |
D | hlsl.intrinsics.vert | 29 fmod(inF0, inF1); 99 fmod(inF0, inF1); 169 fmod(inF0, inF1); 239 fmod(inF0, inF1); 302 fmod(inF0, inF1); \
|
/external/tensorflow/tensorflow/lite/kernels/internal/reference/ |
D | floor_mod.h | 28 return std::fmod(lhs, rhs); in FloorMod()
|