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

<<11121314

  /prebuilts/misc/common/swig/include/2.0.11/php/
phpkw.swg 608 PHPFN(fmod);
  /frameworks/rs/script_api/
rs_math.spec 1027 function: fmod
1040 For example, <code>fmod(-3.8f, 2.f)</code> returns -1.8f (-3.8f - -1.f * 2.f)
1044 function: fmod
    [all...]
  /art/runtime/arch/arm/
quick_entrypoints_arm.S     [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 821 GV.FloatVal = std::fmod(LHS.FloatVal,RHS.FloatVal); break;
836 GV.DoubleVal = std::fmod(LHS.DoubleVal,RHS.DoubleVal); break;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
Execution.cpp 101 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal);
104 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal);
    [all...]
  /external/ImageMagick/MagickCore/
enhance.c     [all...]
composite.c 204 x=c*(1.0-fabs(fmod(h,2.0)-1.0));
277 h=fmod((g-b)/c+6.0,6.0);
    [all...]
  /external/ImageMagick/MagickWand/
operation.c     [all...]
mogrify.c 301 (unsigned long) (parallel/60.0),(unsigned long) floor(fmod(parallel,
858 fmod(geometry_info.rho,360.0)));
860 fmod(geometry_info.rho,360.0)));
862 fmod(geometry_info.sigma,360.0))));
864 fmod(geometry_info.sigma,360.0)));
    [all...]
magick-image.c 629 draw_info->affine.sx=cos((double) DegreesToRadians(fmod(angle,360.0)));
630 draw_info->affine.rx=sin((double) DegreesToRadians(fmod(angle,360.0)));
631 draw_info->affine.ry=(-sin((double) DegreesToRadians(fmod(angle,360.0))));
632 draw_info->affine.sy=cos((double) DegreesToRadians(fmod(angle,360.0)));
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 103 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal);
106 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal);
751 fmod(Src1.AggregateVal[i].FloatVal, Src2.AggregateVal[i].FloatVal);
756 fmod(Src1.AggregateVal[i].DoubleVal, Src2.AggregateVal[i].DoubleVal);
    [all...]
  /external/pdfium/fpdfsdk/javascript/
JS_Value.cpp 489 double r = fmod(x, y);
  /frameworks/rs/script_api/include/
rs_math.rsh     [all...]
  /prebuilts/sdk/renderscript/include/
rs_math.rsh     [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
  /external/ImageMagick/Magick++/lib/
Image.cpp     [all...]
  /external/ImageMagick/coders/
json.c     [all...]
  /external/icu/icu4c/source/common/
putil.cpp 467 return fmod(x, y);
    [all...]
  /external/icu/icu4c/source/i18n/
plurrule.cpp 781 n = fmod(n, opNum);
    [all...]
  /external/valgrind/VEX/test/
test-amd64.c 576 printf("a=%f b=%f fmod(a, b)=%f\n", a, b, fmod(a, b));
    [all...]
test-i386.c 538 printf("a=%f b=%f fmod(a, b)=%f\n", a, b, fmod(a, b));
    [all...]
  /external/eigen/unsupported/test/mpreal/
mpreal.h 414 friend const mpreal fmod (const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode);
2440 inline const mpreal fmod (const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode = mpreal::get_default_rnd()) function in namespace:mpfr
    [all...]
  /frameworks/rs/driver/runtime/
rs_cl.c 504 float __attribute__((overloadable)) fmod(float v1, float v2) { function
507 FN_FUNC_FN_FN(fmod)
1939 HN_FUNC_HN_HN(fmod); variable
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ConstantFolding.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
math.h 246 double __cdecl fmod(double _X,double _Y);
    [all...]

Completed in 2427 milliseconds

<<11121314