HomeSort by relevance Sort by last modified time
    Searched full:ceilf (Results 26 - 50 of 158) sorted by null

12 3 4 5 6 7

  /external/webkit/Source/WebCore/platform/graphics/
FontFastPath.cpp 455 glyphOverflow->top = max<int>(glyphOverflow->top, ceilf(-it.minGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().ascent()));
456 glyphOverflow->bottom = max<int>(glyphOverflow->bottom, ceilf(it.maxGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().descent()));
457 glyphOverflow->left = ceilf(it.firstGlyphOverflow());
458 glyphOverflow->right = ceilf(it.lastGlyphOverflow());
472 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning.
FloatRect.cpp 189 float width = ceilf(rect.maxX()) - left;
190 float height = ceilf(rect.maxY()) - top;
ShadowBlur.cpp 344 const float roundedRadius = ceilf(m_blurRadius);
438 computeSliceSizesFromRadii(2 * ceilf(m_blurRadius), radii, leftSlice, rightSlice, topSlice, bottomSlice);
612 const float roundedRadius = ceilf(m_blurRadius);
678 const float roundedRadius = ceilf(m_blurRadius);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
WebTiledLayer.cpp 168 int tileColumns = ceilf(constrainedSize.width / m_tileSize.width);
169 int tileRows = ceilf(constrainedSize.height / m_tileSize.height);
182 tileRows = ceilf(sqrtf(cMaxTileCount * constrainedSize.height / constrainedSize.width));
  /external/webkit/Source/WebKit/mac/WebView/
WebTextCompletionController.mm 140 float width = ceilf([[_completions objectAtIndex:i] sizeWithAttributes:attributes].width);
148 maxWidth = ceilf([NSScrollView frameSizeForContentSize:NSMakeSize(maxWidth, 100.0f) hasHorizontalScroller:NO hasVerticalScroller:YES borderType:NSNoBorder].width);
149 maxWidth = ceilf([NSWindow frameRectForContentRect:NSMakeRect(0.0f, 0.0f, maxWidth, 100.0f) styleMask:NSBorderlessWindowMask].size.width);
WebDynamicScrollBarsView.mm 299 visibleSize.width = ceilf(visibleSize.width);
300 visibleSize.height = ceilf(visibleSize.height);
301 frameSize.width = ceilf(frameSize.width);
302 frameSize.height = ceilf(frameSize.height);
  /external/webkit/Source/WebCore/platform/graphics/android/
GLWebViewState.cpp 306 static_cast<int>(ceilf(viewport.fRight * invTileContentWidth)),
307 static_cast<int>(ceilf(viewport.fBottom * invTileContentHeight)));
310 int viewMaxTileX = static_cast<int>(ceilf((viewport.width()-1) * invTileContentWidth)) + 1;
311 int viewMaxTileY = static_cast<int>(ceilf((viewport.height()-1) * invTileContentHeight)) + 1;
TiledPage.cpp 132 const int lastDirtyTileX = static_cast<int>(ceilf(inval.maxX() * invTileContentWidth));
133 const int lastDirtyTileY = static_cast<int>(ceilf(inval.maxY() * invTileContentHeight));
271 lastTileX = std::min(lastTileX, static_cast<int>(ceilf(maxWidthTiles)) - 1);
272 lastTileY = std::min(lastTileY, static_cast<int>(ceilf(maxHeightTiles)) - 1);
BaseLayerAndroid.cpp 149 bounds.fRight = static_cast<int>(ceilf(viewport.fRight * invTileWidth)) + PREFETCH_X_DIST;
150 bounds.fBottom = static_cast<int>(ceilf(viewport.fBottom * invTileHeight)) + PREFETCH_Y_DIST;
  /external/webkit/Source/WebCore/rendering/
RenderCombineText.cpp 70 textOrigin.move(boxRect.height() / 2 - ceilf(m_combinedTextWidth) / 2, style()->font().pixelSize());
RenderTextControlMultiLine.cpp 93 return static_cast<int>(ceilf(charWidth * factor)) + scrollbarThickness();
InlineFlowBox.h 201 int logicalRightLayoutOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->maxXLayoutOverflow() : m_overflow->maxYLayoutOverflow()) : ceilf(logicalRight()); }
227 int logicalRightVisualOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->maxXVisualOverflow() : m_overflow->maxYVisualOverflow()) : ceilf(logicalRight()); }
  /frameworks/base/opengl/libagl/
fp.cpp 67 x = x - ceilf(x + 0.5f) + 1.0f;
  /external/valgrind/main/memcheck/tests/
vcpu_fnfns.c 39 printf(" ceilF(%+20.4e) = %+20.4e\n", (double)f, (double)ceilf(f));
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWinInternal.cpp 348 int tileColumns = ceilf(constrainedSize.width / m_tileSize.width);
349 int tileRows = ceilf(constrainedSize.height / m_tileSize.height);
362 tileRows = ceilf(sqrtf(cMaxTileCount * constrainedSize.height / constrainedSize.width));
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontWx.cpp 92 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLFraction.cpp 128 m_lineThickness *= ceilf(gFractionBarWidth * style()->fontSize());
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebPopupMenuWin.cpp 69 popupWidth = std::max<float>(popupWidth, ceilf(itemFont.width(TextRun(text.characters(), text.length()))));
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageCG.cpp 213 subimageRect.setWidth(ceilf(subimageRect.width() + leftPadding));
216 subimageRect.setHeight(ceilf(subimageRect.height() + topPadding));
GraphicsContextCG.cpp 615 float layerWidth = ceilf(rect.width() + doubleLineWidth);
616 float layerHeight = ceilf(rect.height() + doubleLineWidth);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
FETurbulence.cpp 290 float highFrequency = ceilf(tileWidth * m_baseFrequencyX) / tileWidth;
299 float highFrequency = ceilf(tileHeight * m_baseFrequencyY) / tileHeight;
  /external/webkit/Source/WebCore/svg/
SVGLength.cpp 441 float xHeight = ceilf(style->fontMetrics().xHeight());
460 return value * ceilf(style->fontMetrics().xHeight());
  /external/webkit/Source/WebCore/platform/mac/
ScrollAnimatorMac.mm     [all...]
  /external/llvm/cmake/
config-ix.cmake 104 check_symbol_exists(ceilf math.h HAVE_CEILF)
  /external/webkit/Source/JavaScriptCore/wtf/
MathExtras.h 121 float integer = ceilf(num);

Completed in 748 milliseconds

12 3 4 5 6 7