Home
last modified time | relevance | path

Searched refs:floorf (Results 1 – 25 of 100) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
DFontComplexTextMac.cpp66 …return FloatRect(floorf(point.x() + totalWidth - afterWidth), point.y(), roundf(point.x() + totalW… in selectionRectForComplexText()
69 …return FloatRect(floorf(point.x() + beforeWidth), point.y(), roundf(point.x() + afterWidth) - floo… in selectionRectForComplexText()
139 glyphBounds->setTop(floorf(-controller.minGlyphBoundingBoxY())); in floatWidthForComplexText()
141 glyphBounds->setLeft(max<int>(0, floorf(-controller.minGlyphBoundingBoxX()))); in floatWidthForComplexText()
/external/llvm/test/CodeGen/ARM/
Dfloorf.ll5 ; CHECK-NOT: floorf
6 %foo = call float @floorf(float 0x4000CCCCC0000000) nounwind readnone
24 declare float @floorf(float) nounwind readnone
D2011-11-29-128bitArithmetics.ll312 ; CHECK: bl {{.*}}floorf
315 ; CHECK: bl {{.*}}floorf
318 ; CHECK: bl {{.*}}floorf
321 ; CHECK: bl {{.*}}floorf
Dcall-tc.ll168 ; otherwise the call to floorf is lost.
174 %call = tail call float @floorf(float %1)
180 declare float @floorf(float) readnone
/external/chromium_org/chrome/browser/ui/cocoa/tab_contents/
Dsad_tab_view.mm104 CGFloat iconX = floorf((maxWidth - NSWidth(iconFrame)) / 2);
106 MIN(floorf((NSHeight(newBounds) - NSHeight(iconFrame)) / 2) -
109 iconX = floorf(iconX);
110 iconY = floorf(iconY);
117 CGFloat titleX = floorf((maxWidth - NSWidth(titleFrame)) / 2);
139 messageFrame.origin.x = floorf((maxWidth - NSWidth(messageFrame)) / 2);
153 CGFloat helpX = floorf((maxWidth - NSWidth(helpFrame)) / 2);
/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
DIntRectCG.cpp40 int l = static_cast<int>(floorf(rect.origin.x)); in enclosingIntRect()
41 int t = static_cast<int>(floorf(rect.origin.y)); in enclosingIntRect()
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DFloatSize.h184 return IntSize(clampToInteger(floorf(p.width())), clampToInteger(floorf(p.height()))); in flooredIntSize()
194 return IntPoint(clampToInteger(floorf(p.width())), clampToInteger(floorf(p.height()))); in flooredIntPoint()
DFloatPoint.h223 return IntPoint(clampToInteger(floorf(p.x())), clampToInteger(floorf(p.y()))); in flooredIntPoint()
233 return IntSize(clampToInteger(floorf(p.x())), clampToInteger(floorf(p.y()))); in flooredIntSize()
/external/chromium_org/third_party/WebKit/Source/platform/exported/
DWebFloatQuad.cpp43 int left = static_cast<int>(floorf(min(min(min(p[0].x, p[1].x), p[2].x), p[3].x))); in enclosingRect()
44 int top = static_cast<int>(floorf(min(min(min(p[0].y, p[1].y), p[2].y), p[3].y))); in enclosingRect()
/external/llvm/test/CodeGen/X86/
D2007-10-04-AvoidEFLAGSCopy.ll10 %tmp2152 = call float @floorf( float 0.000000e+00 ) ; <float> [#uses=0]
20 declare float @floorf(float)
Dfloor-soft-float.ll8 ; CHECK-SOFT-FLOAT: callq floorf
Drounding-ops.ll5 %call = tail call float @floorf(float %x) nounwind readnone
15 declare float @floorf(float) nounwind readnone
/external/llvm/test/Transforms/InstCombine/
Ddouble-float-shrink-2.ll8 ; DO-SIMPLIFY: call float @floorf(
15 ; C89-SIMPLIFY: call float @floorf(
36 ; --> floorf
Dfloat-shrink-compare.ll37 ; CHECK-NEXT: %floorf = call float @floorf(float %x)
38 ; CHECK-NEXT: fcmp oeq float %floorf, %y
121 ; CHECK-NEXT: %floorf = call float @floorf(float %x)
122 ; CHECK-NEXT: fcmp oeq float %floorf, %y
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGradientGeneratedImage.cpp52 …int firstColumn = static_cast<int>(floorf((((destRect.x() - phase.x()) / scale.width()) - srcRect.… in drawPattern()
53 …int firstRow = static_cast<int>(floorf((((destRect.y() - phase.y()) / scale.height()) - srcRect.y… in drawPattern()
/external/chromium_org/third_party/WebKit/Source/platform/geometry/mac/
DIntRectMac.mm40 int l = static_cast<int>(floorf(rect.origin.x));
41 int t = static_cast<int>(floorf(rect.origin.y));
/external/llvm/test/CodeGen/PowerPC/
Drounding-ops.ll6 %call = tail call float @floorf(float %x) nounwind readnone
13 declare float @floorf(float) nounwind readnone
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFEGaussianBlur.cpp91 …int size = max<unsigned>(2, static_cast<unsigned>(floorf(std.x() * gaussianKernelFactor() + 0.5f))… in calculateUnscaledKernelSize()
96 …int size = max<unsigned>(2, static_cast<unsigned>(floorf(std.y() * gaussianKernelFactor() + 0.5f))… in calculateUnscaledKernelSize()
/external/llvm/test/CodeGen/AArch64/
Darm64-rounding.ll10 %call = tail call float @floorf(float %a) nounwind readnone
14 declare float @floorf(float) nounwind readnone
138 %call = tail call float @floorf(float %a) nounwind readnone
/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
DSkiaUtils.cpp165 int x = static_cast<int>(floorf(0.5f + point.x() * scale)); in SkPathContainsPoint()
166 int y = static_cast<int>(floorf(0.5f + point.y() * scale)); in SkPathContainsPoint()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_test_arit.c191 x -= floorf(x); in fractf()
240 {"floor", &lp_build_floor, &floorf, round_values, Elements(round_values), 24.0 },
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
Dlp_test_arit.c191 x -= floorf(x); in fractf()
240 {"floor", &lp_build_floor, &floorf, round_values, Elements(round_values), 24.0 },
/external/bison/lib/
Dmath.in.h729 # undef floorf
730 # define floorf rpl_floorf macro
732 _GL_FUNCDECL_RPL (floorf, float, (float x));
733 _GL_CXXALIAS_RPL (floorf, float, (float x));
736 # undef floorf
737 _GL_FUNCDECL_SYS (floorf, float, (float x));
739 _GL_CXXALIAS_SYS (floorf, float, (float x));
741 _GL_CXXALIASWARN (floorf);
743 # undef floorf
745 _GL_WARN_ON_USE (floorf, "floorf is unportable - "
/external/bison/darwin-lib/
Dmath.h1041 # undef floorf
1042 # define floorf rpl_floorf
1044 _GL_FUNCDECL_RPL (floorf, float, (float x));
1045 _GL_CXXALIAS_RPL (floorf, float, (float x));
1048 # undef floorf
1049 _GL_FUNCDECL_SYS (floorf, float, (float x));
1051 _GL_CXXALIAS_SYS (floorf, float, (float x));
1053 _GL_CXXALIASWARN (floorf);
1055 # undef floorf
1057 _GL_WARN_ON_USE (floorf, "floorf is unportable - "
/external/bison/linux-lib/
Dmath.h1041 # undef floorf
1042 # define floorf rpl_floorf
1044 _GL_FUNCDECL_RPL (floorf, float, (float x));
1045 _GL_CXXALIAS_RPL (floorf, float, (float x));
1048 # undef floorf
1049 _GL_FUNCDECL_SYS (floorf, float, (float x));
1051 _GL_CXXALIAS_SYS (floorf, float, (float x));
1053 _GL_CXXALIASWARN (floorf);
1055 # undef floorf
1057 _GL_WARN_ON_USE (floorf, "floorf is unportable - "

1234