HomeSort by relevance Sort by last modified time
    Searched full:floorf (Results 26 - 50 of 139) sorted by null

12 3 4 5 6

  /external/webkit/Source/WebCore/platform/graphics/
FontFastPath.cpp 476 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
479 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
FloatRect.cpp 187 float left = floorf(rect.x());
188 float top = floorf(rect.y());
  /frameworks/base/opengl/libagl/
fp.cpp 24 return GGLfixed(floorf(v * 65536.0f + 0.5f));
  /external/valgrind/main/memcheck/tests/
vcpu_fnfns.c 27 printf("floorF(%+20.4e) = %+20.4e\n", (double)f, (double)floorf(f));
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEGaussianBlur.cpp 139 kernelSizeX = max<unsigned>(2, static_cast<unsigned>(floorf(stdX * gGaussianKernelFactor + 0.5f)));
142 kernelSizeY = max<unsigned>(2, static_cast<unsigned>(floorf(stdY * gGaussianKernelFactor + 0.5f)));
FETurbulence.cpp 289 float lowFrequency = floorf(tileWidth * m_baseFrequencyX) / tileWidth;
298 float lowFrequency = floorf(tileHeight * m_baseFrequencyY) / tileHeight;
  /external/webkit/Source/WebCore/platform/graphics/skia/
SkiaUtils.cpp 239 int x = static_cast<int>(floorf(point.x() / scale));
240 int y = static_cast<int>(floorf(point.y() / scale));
  /external/webkit/Source/WebCore/svg/
SVGFEConvolveMatrixElement.cpp 234 targetXValue = static_cast<int>(floorf(orderXValue / 2));
239 targetYValue = static_cast<int>(floorf(orderYValue / 2));
  /frameworks/base/libs/hwui/
Patch.cpp 163 y2 = y1 + floorf(segment * stretchY + 0.5f);
226 x2 = x1 + floorf(segment * stretchX + 0.5f);
OpenGLRenderer.cpp 663 const float x = (int) floorf(rect.left + mSnapshot->transform->getTranslateX() + 0.5f);
664 const float y = (int) floorf(rect.top + mSnapshot->transform->getTranslateY() + 0.5f);
699 x = (int) floorf(rect.left + mSnapshot->transform->getTranslateX() + 0.5f);
700 y = (int) floorf(rect.top + mSnapshot->transform->getTranslateY() + 0.5f);
758 const float x = (int) floorf(rect.left + mSnapshot->transform->getTranslateX() + 0.5f);
759 const float y = (int) floorf(rect.top + mSnapshot->transform->getTranslateY() + 0.5f);
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
builtins.def 59 compiler. For instance C90 reserves floorf function, but does not
60 define it's meaning. When user uses floorf we may assume that the
61 floorf has the meaning we expect, but we can't produce floorf by
241 DEF_C99_C90RES_BUILTIN (BUILT_IN_FLOORF, "floorf", BT_FN_FLOAT_FLOAT, ATTR_CONST_NOTHROW_LIST)
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
builtins.def 59 compiler. For instance C90 reserves floorf function, but does not
60 define it's meaning. When user uses floorf we may assume that the
61 floorf has the meaning we expect, but we can't produce floorf by
241 DEF_C99_C90RES_BUILTIN (BUILT_IN_FLOORF, "floorf", BT_FN_FLOAT_FLOAT, ATTR_CONST_NOTHROW_LIST)
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
builtins.def 59 compiler. For instance C90 reserves floorf function, but does not
60 define it's meaning. When user uses floorf we may assume that the
61 floorf has the meaning we expect, but we can't produce floorf by
241 DEF_C99_C90RES_BUILTIN (BUILT_IN_FLOORF, "floorf", BT_FN_FLOAT_FLOAT, ATTR_CONST_NOTHROW_LIST)
    [all...]
  /external/skia/src/core/
SkPoint.cpp 146 return (int)floorf(sqrtf(fx*fx + fy*fy) + 0.5f);
345 SkFixed xx = (int)floorf(fx * 65536 + 0.5f);
346 SkFixed yy = (int)floorf(fy * 65536 + 0.5f);
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWinInternal.cpp 358 tileColumns = floorf(cMaxTileCount / tileRows);
360 tileRows = floorf(cMaxTileCount / tileColumns);
363 tileColumns = floorf(cMaxTileCount / tileRows);
  /bionic/libm/src/
e_lgammaf_r.c 108 z = floorf(y);
111 y = (float)2.0*(y - floorf(y)); /* y = |x| mod 2.0 */
  /external/webkit/Source/WebCore/platform/graphics/android/
BaseLayerAndroid.cpp 147 bounds.fLeft = static_cast<int>(floorf(viewport.fLeft * invTileWidth)) - PREFETCH_X_DIST;
148 bounds.fTop = static_cast<int>(floorf(viewport.fTop * invTileHeight)) - PREFETCH_Y_DIST;
PathAndroid.cpp 95 int x = (int)floorf(point.x());
96 int y = (int)floorf(point.y());
GLWebViewState.cpp 304 static_cast<int>(floorf(viewport.fLeft * invTileContentWidth)),
305 static_cast<int>(floorf(viewport.fTop * invTileContentHeight)),
TiledPage.cpp 130 const int firstDirtyTileX = static_cast<int>(floorf(inval.x() * invTileContentWidth));
131 const int firstDirtyTileY = static_cast<int>(floorf(inval.y() * invTileContentHeight));
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataCGWin.cpp 91 fAscent += floorf(((fAscent + fDescent) * 0.15f) + 0.5f);
  /external/skia/tests/
MathTest.cpp 223 int round = (int)floorf(s + 0.5f);
224 int trunc = (int)floorf(s);
  /external/webkit/Source/WebCore/html/
HTMLCanvasElement.cpp 388 int left = clampToInteger(floorf(logicalRect.x() * m_pageScaleFactor));
389 int top = clampToInteger(floorf(logicalRect.y() * m_pageScaleFactor));
  /external/webkit/Source/WebCore/page/
PrintContext.cpp 80 pageHeight = floorf(pageWidth * ratio);
84 pageWidth = floorf(pageHeight * ratio);
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageCG.cpp 207 float leftPadding = srcRect.x() - floorf(srcRect.x());
208 float topPadding = srcRect.y() - floorf(srcRect.y());

Completed in 1692 milliseconds

12 3 4 5 6