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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasPathMethods.cpp 161 newEndAngle = startAngle + (twoPiFloat - fmodf(startAngle - endAngle, twoPiFloat));
163 newEndAngle = startAngle - (twoPiFloat - fmodf(endAngle - startAngle, twoPiFloat));
184 newStartAngle = twoPiFloat + fmodf(newStartAngle, -twoPiFloat);
186 newStartAngle = fmodf(newStartAngle, twoPiFloat);
240 // startAngle - fmodf(startAngle, piOverTwoFloat) + piOverTwoFloat is the one of (0, 0.5Pi, Pi, 1.5Pi, 2Pi)
242 for (float angle = startAngle - fmodf(startAngle, piOverTwoFloat) + piOverTwoFloat; angle < endAngle; angle += piOverTwoFloat)
245 for (float angle = startAngle - fmodf(startAngle, piOverTwoFloat); angle > endAngle; angle -= piOverTwoFloat)
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Image.cpp 145 oneTileRect.setX(destRect.x() + fmodf(fmodf(-srcPoint.x(), actualTileSize.width()) - actualTileSize.width(), actualTileSize.width()));
146 oneTileRect.setY(destRect.y() + fmodf(fmodf(-srcPoint.y(), actualTileSize.height()) - actualTileSize.height(), actualTileSize.height()));
  /art/runtime/arch/arm/
entrypoints_init_arm.cc 87 extern "C" float fmodf(float a, float b); // REM_FLOAT[_2ADDR]
196 qpoints->pFmodf = fmodf;
  /art/runtime/arch/mips/
entrypoints_init_mips.cc 93 extern "C" float fmodf(float a, float b); // REM_FLOAT[_2ADDR]
201 qpoints->pFmodf = fmodf;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineBaseline.cpp 178 return !fabsf(fmodf(orientationAngle, 180));
  /external/chromium_org/third_party/skia/include/core/
SkFloatingPoint.h 85 #define sk_float_mod(x,y) fmodf(x,y)
  /external/bison/darwin-lib/
math.h 1192 # undef fmodf macro
    [all...]
  /external/bison/lib/
math.in.h 866 # undef fmodf macro
867 # define fmodf rpl_fmodf macro
869 _GL_FUNCDECL_RPL (fmodf, float, (float x, float y));
870 _GL_CXXALIAS_RPL (fmodf, float, (float x, float y));
873 # undef fmodf macro
874 _GL_FUNCDECL_SYS (fmodf, float, (float x, float y));
876 _GL_CXXALIAS_SYS (fmodf, float, (float x, float y));
878 _GL_CXXALIASWARN (fmodf); variable
880 # undef fmodf macro
882 _GL_WARN_ON_USE (fmodf, "fmodf is unportable -
    [all...]
  /external/bison/linux-lib/
math.h 1192 # undef fmodf macro
    [all...]
  /external/clang/test/CodeGen/
libcall-declarations.c 23 float fmodf(float, float);
266 F(fabsf), F(fabsl), F(fmod), F(fmodf), F(fmodl),
328 // CHECK-NOERRNO: declare float @fmodf(float, float) [[NUW]]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
Font.h 231 return tabWidth - fmodf(position, tabWidth);
  /bionic/libm/include/
math.h 335 float fmodf(float, float);
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 279 /// float fmodf(float x, float y);
280 fmodf, enumerator in enum:llvm::LibFunc::Func
  /bionic/libm/upstream-freebsd/lib/msun/src/
math_private.h 707 #define __ieee754_fmodf fmodf
  /external/ltrace/etc/
libm.so.conf 333 float fmodf(float, float);
  /development/ndk/platforms/android-13/include/
math.h 340 float fmodf(float, float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-18/include/
math.h 342 float fmodf(float, float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-3/include/
math.h 339 float fmodf(float, float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-9/include/
math.h 339 float fmodf(float, float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-L/include/
math.h 335 float fmodf(float, float) __NDK_FPABI_MATH__;
  /external/llvm/lib/Target/
TargetLibraryInfo.cpp 150 "fmodf",
516 TLI.setUnavailable(LibFunc::fmodf);
  /bionic/tests/
math_test.cpp 652 TEST(math, fmodf) {
653 ASSERT_FLOAT_EQ(2.0f, fmodf(12.0f, 10.0f));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleBuilderConverter.cpp 259 float angle = fabsf(fmodf(primitiveValue->getFloatValue(), 360.0f));
  /external/libcxx/test/depr/depr.c.headers/
math_h.disabled.cpp 101 static_assert((std::is_same<decltype(fmodf(0,0)), float>::value), "");
  /art/runtime/interpreter/
interpreter_goto_table_impl.cc     [all...]

Completed in 1254 milliseconds

1 2