/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},
|
/bionic/libm/man/ |
floor.3 | 40 .Nm floorf , 50 .Fn floorf "float x" 56 .Fn floorf 78 .Fn floorf
|
/bionic/libm/src/ |
s_floorf.c | 21 * floorf(x) 26 * Inexact flag raised if x not equal to floorf(x). 35 floorf(float x) function
|
s_roundf.c | 41 t = floorf(x); 46 t = floorf(-x);
|
e_lgammaf_r.c | 108 z = floorf(y); 111 y = (float)2.0*(y - floorf(y)); /* y = |x| mod 2.0 */
|
/bionic/libm/i387/ |
s_floorf.S | 11 ENTRY(floorf) function
|
/external/webkit/WebCore/platform/graphics/mac/ |
FontComplexTextMac.cpp | 50 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h); 53 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
|
IntRectMac.mm | 40 int l = static_cast<int>(floorf(rect.origin.x)); 41 int t = static_cast<int>(floorf(rect.origin.y));
|
/external/webkit/WebCore/platform/graphics/win/ |
FontWin.cpp | 57 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h); 60 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
|
SimpleFontDataCGWin.cpp | 92 fAscent += floorf(((fAscent + fDescent) * 0.15f) + 0.5f);
|
/external/webkit/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 | 106 CGContextTranslateCTM(context->platformContext(), floorf(-min(zero, min(rx.x, ry.x))), floorf(-min(zero, min(rx.y, ry.y))));
|
ImageCG.cpp | 194 float leftPadding = srcRect.x() - floorf(srcRect.x()); 195 float topPadding = srcRect.y() - floorf(srcRect.y());
|
/external/webkit/WebCore/platform/graphics/wx/ |
FontWx.cpp | 81 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h); 84 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
|
/frameworks/base/libs/surfaceflinger/ |
Transform.cpp | 116 return floorf(mMatrix[2][0] + 0.5f); 120 return floorf(mMatrix[2][1] + 0.5f); 260 r.left = floorf(min(lt[0], rt[0], lb[0], rb[0]) + 0.5f); 261 r.top = floorf(min(lt[1], rt[1], lb[1], rb[1]) + 0.5f); 262 r.right = floorf(max(lt[0], rt[0], lb[0], rb[0]) + 0.5f); 263 r.bottom = floorf(max(lt[1], rt[1], lb[1], rb[1]) + 0.5f);
|
/external/skia/include/core/ |
SkFloatingPoint.h | 59 #define sk_float_floor(x) floorf(x)
|
/external/webkit/WebCore/platform/graphics/ |
FontFastPath.cpp | 336 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h); 338 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
|
FloatRect.cpp | 115 int l = static_cast<int>(floorf(rect.x())); 116 int t = static_cast<int>(floorf(rect.y()));
|
/frameworks/base/libs/rs/java/Film/res/raw/ |
filmstrip.c | 71 int offset = (int)floorf(pos * 2.f);
|
/external/skia/src/core/ |
SkPoint.cpp | 123 return (int)floorf(sqrtf(fx*fx + fy*fy) + 0.5f); 322 SkFixed xx = (int)floorf(fx * 65536 + 0.5f); 323 SkFixed yy = (int)floorf(fy * 65536 + 0.5f);
|
/frameworks/base/opengl/libagl/ |
fp.cpp | 24 return GGLfixed(floorf(v * 65536.0f + 0.5f));
|
/external/webkit/WebCore/platform/graphics/skia/ |
SkiaUtils.cpp | 231 int x = static_cast<int>(floorf(point.x() / scale)); 232 int y = static_cast<int>(floorf(point.y() / scale));
|
/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...] |
/external/skia/tests/ |
MathTest.cpp | 156 int round = (int)floorf(s + 0.5f); 157 int trunc = (int)floorf(s);
|
/external/webkit/WebCore/platform/graphics/android/ |
PathAndroid.cpp | 82 int x = (int)floorf(point.x()); 83 int y = (int)floorf(point.y());
|