/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/ |
D | FontComplexTextMac.cpp | 66 …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/ |
D | floorf.ll | 5 ; CHECK-NOT: floorf 6 %foo = call float @floorf(float 0x4000CCCCC0000000) nounwind readnone 24 declare float @floorf(float) nounwind readnone
|
D | 2011-11-29-128bitArithmetics.ll | 312 ; CHECK: bl {{.*}}floorf 315 ; CHECK: bl {{.*}}floorf 318 ; CHECK: bl {{.*}}floorf 321 ; CHECK: bl {{.*}}floorf
|
D | call-tc.ll | 168 ; 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/ |
D | sad_tab_view.mm | 104 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/ |
D | IntRectCG.cpp | 40 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/ |
D | FloatSize.h | 184 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()
|
D | FloatPoint.h | 223 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/ |
D | WebFloatQuad.cpp | 43 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/ |
D | 2007-10-04-AvoidEFLAGSCopy.ll | 10 %tmp2152 = call float @floorf( float 0.000000e+00 ) ; <float> [#uses=0] 20 declare float @floorf(float)
|
D | floor-soft-float.ll | 8 ; CHECK-SOFT-FLOAT: callq floorf
|
D | rounding-ops.ll | 5 %call = tail call float @floorf(float %x) nounwind readnone 15 declare float @floorf(float) nounwind readnone
|
/external/llvm/test/Transforms/InstCombine/ |
D | double-float-shrink-2.ll | 8 ; DO-SIMPLIFY: call float @floorf( 15 ; C89-SIMPLIFY: call float @floorf( 36 ; --> floorf
|
D | float-shrink-compare.ll | 37 ; 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/ |
D | GradientGeneratedImage.cpp | 52 …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/ |
D | IntRectMac.mm | 40 int l = static_cast<int>(floorf(rect.origin.x)); 41 int t = static_cast<int>(floorf(rect.origin.y));
|
/external/llvm/test/CodeGen/PowerPC/ |
D | rounding-ops.ll | 6 %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/ |
D | FEGaussianBlur.cpp | 91 …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/ |
D | arm64-rounding.ll | 10 %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/ |
D | SkiaUtils.cpp | 165 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/ |
D | lp_test_arit.c | 191 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/ |
D | lp_test_arit.c | 191 x -= floorf(x); in fractf() 240 {"floor", &lp_build_floor, &floorf, round_values, Elements(round_values), 24.0 },
|
/external/bison/lib/ |
D | math.in.h | 729 # 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/ |
D | math.h | 1041 # 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/ |
D | math.h | 1041 # 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 - "
|