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

1 2 3 4

  /bionic/libm/src/
s_roundf.c 41 t = floorf(x);
46 t = floorf(-x);
s_floorf.c 21 * floorf(x)
26 * Inexact flag raised if x not equal to floorf(x).
35 floorf(float x) function
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/cg/
IntRectCG.cpp 42 int l = static_cast<int>(floorf(rect.origin.x));
43 int t = static_cast<int>(floorf(rect.origin.y));
PDFDocumentImage.cpp 113 CGContextTranslateCTM(context->platformContext(), floorf(-min(zero, min(rx.x, ry.x))), floorf(-min(zero, min(rx.y, ry.y))));
  /external/webkit/Source/WebCore/platform/graphics/mac/
IntRectMac.mm 40 int l = static_cast<int>(floorf(rect.origin.x));
41 int t = static_cast<int>(floorf(rect.origin.y));
FontComplexTextMac.cpp 53 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
56 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
  /bionic/libm/i387/
s_floorf.S 11 ENTRY(floorf) function
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontWx.cpp 97 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
100 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
104 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
  /external/webkit/Source/WebCore/platform/graphics/win/
FontWin.cpp 66 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
69 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
WebTiledLayer.cpp 178 tileColumns = floorf(cMaxTileCount / tileRows);
180 tileRows = floorf(cMaxTileCount / tileColumns);
183 tileColumns = floorf(cMaxTileCount / tileRows);
SimpleFontDataCGWin.cpp 91 fAscent += floorf(((fAscent + fDescent) * 0.15f) + 0.5f);
  /frameworks/base/core/jni/
android_util_FloatMath.cpp 9 static float FloorF(JNIEnv* env, jobject clazz, float x) {
10 return floorf(x);
31 {"floor", "(F)F", (void*) MathUtilsGlue::FloorF},
  /frameworks/base/libs/hwui/
Rect.h 165 left = floorf(left + 0.5f);
166 top = floorf(top + 0.5f);
167 right = floorf(right + 0.5f);
168 bottom = floorf(bottom + 0.5f);
  /frameworks/base/services/surfaceflinger/
Transform.cpp 220 r.left = floorf(min(lt[0], rt[0], lb[0], rb[0]) + 0.5f);
221 r.top = floorf(min(lt[1], rt[1], lb[1], rb[1]) + 0.5f);
222 r.right = floorf(max(lt[0], rt[0], lb[0], rb[0]) + 0.5f);
223 r.bottom = floorf(max(lt[1], rt[1], lb[1], rb[1]) + 0.5f);
242 int xpos = floorf(tx() + 0.5f);
243 int ypos = floorf(ty() + 0.5f);
  /frameworks/base/opengl/libagl/
fp.cpp 24 return GGLfixed(floorf(v * 65536.0f + 0.5f));
  /external/skia/include/core/
SkFloatingPoint.h 59 #define sk_float_floor(x) floorf(x)
  /external/webkit/Source/WebCore/platform/graphics/
FloatRect.cpp 187 float left = floorf(rect.x());
188 float top = floorf(rect.y());
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);
  /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)));
FEMorphology.cpp 121 int radiusX = static_cast<int>(floorf(filter->applyHorizontalScale(m_radiusX)));
122 int radiusY = static_cast<int>(floorf(filter->applyVerticalScale(m_radiusY)));
  /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/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/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/android/
BaseLayerAndroid.cpp 136 bounds.fLeft = static_cast<int>(floorf(viewport.fLeft * invTileWidth)) - PREFETCH_X_DIST;
137 bounds.fTop = static_cast<int>(floorf(viewport.fTop * invTileHeight)) - PREFETCH_Y_DIST;

Completed in 318 milliseconds

1 2 3 4