Searched refs:floorf (Results 1 - 25 of 46) sorted by relevance

12

/macosx-10.10/WebCore-7600.1.25/platform/graphics/cg/
H A DIntRectCG.cpp42 int l = static_cast<int>(floorf(rect.origin.x));
43 int t = static_cast<int>(floorf(rect.origin.y));
/macosx-10.10/WebCore-7600.1.25/platform/graphics/mac/
H A DIntRectMac.mm41 int l = static_cast<int>(floorf(rect.origin.x));
42 int t = static_cast<int>(floorf(rect.origin.y));
H A DFontMac.mm268 point.setX(floorf(point.x()));
278 point.setY(floorf(y - yAdjustmentFactor * (fontSize + 2) + 2));
285 point.setY(floorf(y - yAdjustment));
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DFloatPoint.h220 return IntPoint(clampToInteger(floorf(p.x())), clampToInteger(floorf(p.y())));
225 return FloatPoint(floorf(p.x() * deviceScaleFactor) / deviceScaleFactor, floorf(p.y() * deviceScaleFactor) / deviceScaleFactor);
240 return IntSize(clampToInteger(floorf(p.x())), clampToInteger(floorf(p.y())));
H A DFloatSize.h183 return IntSize(clampToInteger(floorf(p.width())), clampToInteger(floorf(p.height())));
193 return IntPoint(clampToInteger(floorf(p.width())), clampToInteger(floorf(p.height())));
/macosx-10.10/Chess-310.6/sjeng/
H A Dproof.c684 node->proof = 1 + floorf(ply / 50);
685 node->disproof = l + floorf(ply / 50);
695 node->proof = 1 + floorf(ply / 30);
696 node->disproof = l + floorf(ply / 30);
700 node->proof = 1 + floorf(ply / 80);
701 node->disproof = l + floorf(ply / 80);
706 node->proof = 1 + floorf(ply / 150);
707 node->disproof = l + floorf(ply / 150);
715 node->proof = l + floorf(ply / 50);
716 node->disproof = 1 + floorf(pl
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/
H A DFEMorphology.cpp210 int radiusX = static_cast<int>(floorf(filter.applyHorizontalScale(m_radiusX)));
211 int radiusY = static_cast<int>(floorf(filter.applyVerticalScale(m_radiusY)));
H A DFETurbulence.cpp280 float lowFrequency = floorf(tileWidth * baseFrequencyX) / tileWidth;
289 float lowFrequency = floorf(tileHeight * baseFrequencyY) / tileHeight;
H A DFEGaussianBlur.cpp396 int size = std::max<unsigned>(2, static_cast<unsigned>(floorf(stdDeviation.x() * gaussianKernelFactor() + 0.5f)));
401 int size = std::max<unsigned>(2, static_cast<unsigned>(floorf(stdDeviation.y() * gaussianKernelFactor() + 0.5f)));
/macosx-10.10/WebKit2-7600.1.25/UIProcess/CoordinatedGraphics/
H A DPageViewportController.cpp122 bounds.setWidth(std::max(0.f, m_contentsSize.width() - floorf(m_viewportSize.width() / scale)));
123 bounds.setHeight(std::max(0.f, m_contentsSize.height() - floorf(m_viewportSize.height() / scale)));
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Target/
H A DTargetLibraryInfo.h160 /// float floorf(float x);
161 floorf, enumerator in enum:llvm::LibFunc::Func
374 case LibFunc::floor: case LibFunc::floorf: case LibFunc::floorl:
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGRotation/
H A DCGImageUtils.py226 floorf((bounds.size.width - imageRect.size.height) / 2.0),
227 floorf((bounds.size.height - imageRect.size.width) / 2.0))
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGRotation/
H A DCGImageUtils.py226 floorf((bounds.size.width - imageRect.size.height) / 2.0),
227 floorf((bounds.size.height - imageRect.size.width) / 2.0))
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Core Graphics/CGRotation/
H A DCGImageUtils.py226 floorf((bounds.size.width - imageRect.size.height) / 2.0),
227 floorf((bounds.size.height - imageRect.size.width) / 2.0))
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cairo/
H A DPlatformContextCairo.cpp187 leftPadding = static_cast<float>(expandedSrcRect.x()) - floorf(srcRect.x());
188 topPadding = static_cast<float>(expandedSrcRect.y()) - floorf(srcRect.y());
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGFEConvolveMatrixElement.cpp313 targetXValue = static_cast<int>(floorf(orderXValue / 2));
318 targetYValue = static_cast<int>(floorf(orderYValue / 2));
/macosx-10.10/WebCore-7600.1.25/platform/graphics/ca/win/
H A DPlatformCALayerWinInternal.cpp371 tileColumns = floorf(cMaxTileCount / tileRows);
373 tileRows = floorf(cMaxTileCount / tileColumns);
376 tileColumns = floorf(cMaxTileCount / tileRows);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A DGestureRecognizer.cpp238 offsetWidth = (offsetWidth > 0) ? ceilf(offsetWidth) : floorf(offsetWidth);
239 offsetHeight = (offsetHeight > 0) ? ceilf(offsetHeight) : floorf(offsetHeight);
/macosx-10.10/Chess-310.6/Sources/
H A DMBCBoardView.mm530 px = copysignf(floorf(pxa/kRes)*kRes+kRes2, px);
531 pz = copysignf(floorf(pza/kRes)*kRes+kRes2, pz);
/macosx-10.10/WebCore-7600.1.25/page/
H A DFrame.cpp675 resultSize.setWidth(floorf(expectedSize.width()));
676 resultSize.setHeight(floorf(resultSize.width() * ratio));
680 resultSize.setHeight(floorf(expectedSize.height()));
681 resultSize.setWidth(floorf(resultSize.height() * ratio));
/macosx-10.10/WebCore-7600.1.25/platform/graphics/harfbuzz/
H A DHarfBuzzFaceCairo.cpp221 if (floorf(size) == size)
/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/
H A DSimpleFontDataWin.cpp70 ascent += floorf(((ascent + descent) * 0.15f) + 0.5f);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Cookies/soup/
H A DWebKitSoupCookieJarSqlite.cpp103 time_t now = floorf(currentTime());
/macosx-10.10/llvmCore-3425.0.34/lib/Target/
H A DTargetLibraryInfo.cpp96 "floorf",
302 TLI.setUnavailable(LibFunc::floorf);
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLCanvasElement.cpp508 float x = floorf(deviceRect.x());
509 float y = floorf(deviceRect.y());

Completed in 338 milliseconds

12