Home
last modified time | relevance | path

Searched refs:fmodf (Results 1 – 25 of 39) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DCanvasPathMethods.cpp161 newEndAngle = startAngle + (twoPiFloat - fmodf(startAngle - endAngle, twoPiFloat)); in adjustEndAngle()
163 newEndAngle = startAngle - (twoPiFloat - fmodf(endAngle - startAngle, twoPiFloat)); in adjustEndAngle()
184 newStartAngle = twoPiFloat + fmodf(newStartAngle, -twoPiFloat); in canonicalizeAngle()
186 newStartAngle = fmodf(newStartAngle, twoPiFloat); in canonicalizeAngle()
242 …for (float angle = startAngle - fmodf(startAngle, piOverTwoFloat) + piOverTwoFloat; angle < endAng… in degenerateEllipse()
245 …for (float angle = startAngle - fmodf(startAngle, piOverTwoFloat); angle > endAngle; angle -= piOv… in degenerateEllipse()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DImage.cpp145 …oneTileRect.setX(destRect.x() + fmodf(fmodf(-srcPoint.x(), actualTileSize.width()) - actualTileSiz… in drawTiled()
146 …oneTileRect.setY(destRect.y() + fmodf(fmodf(-srcPoint.y(), actualTileSize.height()) - actualTileSi… in drawTiled()
/external/llvm/test/CodeGen/X86/
Dsplit-vector-rem.ll2 ; RUN: llc < %s -march=x86-64 | grep fmodf | count 8
Dvector-rem.ll2 ; RUN: llc < %s -march=x86-64 | grep fmodf | count 4
/external/bison/linux-lib/
Dmath.h1178 # undef fmodf
1179 # define fmodf rpl_fmodf
1181 _GL_FUNCDECL_RPL (fmodf, float, (float x, float y));
1182 _GL_CXXALIAS_RPL (fmodf, float, (float x, float y));
1185 # undef fmodf
1186 _GL_FUNCDECL_SYS (fmodf, float, (float x, float y));
1188 _GL_CXXALIAS_SYS (fmodf, float, (float x, float y));
1190 _GL_CXXALIASWARN (fmodf);
1192 # undef fmodf
1194 _GL_WARN_ON_USE (fmodf, "fmodf is unportable - "
/external/bison/lib/
Dmath.in.h866 # undef fmodf
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
874 _GL_FUNCDECL_SYS (fmodf, float, (float x, float y));
876 _GL_CXXALIAS_SYS (fmodf, float, (float x, float y));
878 _GL_CXXALIASWARN (fmodf);
880 # undef fmodf
882 _GL_WARN_ON_USE (fmodf, "fmodf is unportable - "
/external/bison/darwin-lib/
Dmath.h1178 # undef fmodf
1179 # define fmodf rpl_fmodf
1181 _GL_FUNCDECL_RPL (fmodf, float, (float x, float y));
1182 _GL_CXXALIAS_RPL (fmodf, float, (float x, float y));
1185 # undef fmodf
1186 _GL_FUNCDECL_SYS (fmodf, float, (float x, float y));
1188 _GL_CXXALIAS_SYS (fmodf, float, (float x, float y));
1190 _GL_CXXALIASWARN (fmodf);
1192 # undef fmodf
1194 _GL_WARN_ON_USE (fmodf, "fmodf is unportable - "
/external/clang/test/CodeGen/
Dlibcall-declarations.c23 float fmodf(float, float);
266 F(fabsf), F(fabsl), F(fmod), F(fmodf), F(fmodl),
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGTextLayoutEngineBaseline.cpp178 return !fabsf(fmodf(orientationAngle, 180)); in glyphOrientationIsMultiplyOf180Degrees()
/external/skia/include/core/
DSkFloatingPoint.h83 #define sk_float_mod(x,y) fmodf(x,y)
/external/chromium_org/third_party/skia/include/core/
DSkFloatingPoint.h85 #define sk_float_mod(x,y) fmodf(x,y)
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DFont.h231 return tabWidth - fmodf(position, tabWidth); in tabWidth()
/external/llvm/test/CodeGen/AArch64/
Darm64-neon-mul-div.ll656 ; CHECK: bl fmodf
657 ; CHECK: bl fmodf
664 ; CHECK: bl fmodf
665 ; CHECK: bl fmodf
666 ; CHECK: bl fmodf
667 ; CHECK: bl fmodf
Dillegal-float-ops.ll210 ; CHECK: bl fmodf
Darm64-illegal-float-ops.ll210 ; CHECK: bl fmodf
/external/llvm/include/llvm/Target/
DTargetLibraryInfo.h280 fmodf, enumerator
/external/ltrace/etc/
Dlibm.so.conf333 float fmodf(float, float);
/external/chromium_org/third_party/cython/src/Cython/Includes/numpy/
Dmath.pxd85 float fmodf "npy_fmodf"(float x)
/external/llvm/lib/Target/
DTargetLibraryInfo.cpp516 TLI.setUnavailable(LibFunc::fmodf); in initialize()
/external/llvm/test/Transforms/InstCombine/
Dwin-math.ll159 ; WIN32-NOT: float @fmodf
/external/bison/m4/
Dmath_h.m445 fmod fmodf fmodl frexpf frexpl hypotf hypotl
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleBuilderConverter.cpp259 float angle = fabsf(fmodf(primitiveValue->getFloatValue(), 360.0f)); in convertGlyphOrientation()
/external/llvm/cmake/
Dconfig-ix.cmake137 check_symbol_exists(fmodf math.h HAVE_FMODF)
/external/libcxx/include/
Dcmath91 float fmodf(float x, float y);
842 using ::fmodf;
846 …E_VISIBILITY float fmod(float __x, float __y) _NOEXCEPT {return fmodf(__x, __y);}
/external/libcxx/test/depr/depr.c.headers/
Dmath_h.disabled.cpp101 static_assert((std::is_same<decltype(fmodf(0,0)), float>::value), ""); in test_fmod()

12