HomeSort by relevance Sort by last modified time
    Searched refs:ceilf (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/webkit/Source/WebCore/platform/graphics/cg/
IntRectCG.cpp 44 int r = static_cast<int>(ceilf(CGRectGetMaxX(rect)));
45 int b = static_cast<int>(ceilf(CGRectGetMaxY(rect)));
  /external/webkit/Source/WebCore/platform/graphics/mac/
IntRectMac.mm 42 int r = static_cast<int>(ceilf(NSMaxX(rect)));
43 int b = static_cast<int>(ceilf(NSMaxY(rect)));
FontComplexTextMac.cpp 50 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning
114 glyphOverflow->top = max<int>(glyphOverflow->top, ceilf(-controller.minGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().ascent()));
115 glyphOverflow->bottom = max<int>(glyphOverflow->bottom, ceilf(controller.maxGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().descent()));
116 glyphOverflow->left = max<int>(0, ceilf(-controller.minGlyphBoundingBoxX()));
117 glyphOverflow->right = max<int>(0, ceilf(controller.maxGlyphBoundingBoxX() - controller.totalWidth()));
  /bionic/libm/i387/
s_ceilf.S 11 ENTRY(ceilf) function
  /bionic/libm/src/
s_ceilf.c 26 ceilf(float x) function
  /external/webkit/Source/WebCore/svg/
SVGFontFaceElement.cpp 130 return static_cast<unsigned>(ceilf(value.toFloat()));
135 return static_cast<int>(ceilf(getAttribute(x_heightAttr).toFloat()));
223 return static_cast<int>(ceilf(ascentValue.toFloat()));
228 return static_cast<int>(unitsPerEm()) - static_cast<int>(ceilf(vertOriginY.toFloat()));
232 return static_cast<int>(ceilf(unitsPerEm() * 0.8f));
245 int descent = static_cast<int>(ceilf(descentValue.toFloat()));
252 return static_cast<int>(ceilf(vertOriginY.toFloat()));
256 return static_cast<int>(ceilf(unitsPerEm() * 0.2f));
  /frameworks/base/libs/hwui/
LayerCache.h 114 mWidth = uint32_t(ceilf(layerWidth / float(LAYER_SIZE)) * LAYER_SIZE);
115 mHeight = uint32_t(ceilf(layerHeight / float(LAYER_SIZE)) * LAYER_SIZE);
  /external/webkit/Source/WebCore/platform/graphics/win/
FontWin.cpp 62 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning
130 glyphOverflow->top = max<int>(glyphOverflow->top, ceilf(-controller.minGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().ascent()));
131 glyphOverflow->bottom = max<int>(glyphOverflow->bottom, ceilf(controller.maxGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().descent()));
132 glyphOverflow->left = max<int>(0, ceilf(-controller.minGlyphBoundingBoxX()));
133 glyphOverflow->right = max<int>(0, ceilf(controller.maxGlyphBoundingBoxX() - controller.runWidthSoFar()));
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));
  /frameworks/base/core/jni/
android_util_FloatMath.cpp 13 static float CeilF(JNIEnv* env, jobject clazz, float x) {
14 return ceilf(x);
32 {"ceil", "(F)F", (void*) MathUtilsGlue::CeilF},
  /frameworks/base/opengl/libagl/
fp.cpp 67 x = x - ceilf(x + 0.5f) + 1.0f;
  /external/webkit/Source/WebCore/html/
HTMLCanvasElement.cpp 390 int right = clampToInteger(ceilf(logicalRect.maxX() * m_pageScaleFactor));
391 int bottom = clampToInteger(ceilf(logicalRect.maxY() * m_pageScaleFactor));
399 float width = clampToInteger(ceilf(logicalSize.width() * m_pageScaleFactor));
400 float height = clampToInteger(ceilf(logicalSize.height() * m_pageScaleFactor));
406 width = ceilf(width);
407 height = ceilf(height);
  /external/webkit/Source/WebCore/dom/
CanvasSurface.cpp 113 float wf = ceilf(logicalSize.width() * m_pageScaleFactor);
114 float hf = ceilf(logicalSize.height() * m_pageScaleFactor);
  /external/webkit/Source/WebCore/platform/graphics/
FloatSize.h 153 return IntSize(clampToInteger(ceilf(p.width())), clampToInteger(ceilf(p.height())));
FloatRect.cpp 189 float width = ceilf(rect.maxX()) - left;
190 float height = ceilf(rect.maxY()) - top;
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.
  /external/webkit/Source/WebCore/platform/graphics/android/
TiledPage.cpp 133 const int lastDirtyTileX = static_cast<int>(ceilf(inval.maxX() * invTileContentWidth));
134 const int lastDirtyTileY = static_cast<int>(ceilf(inval.maxY() * invTileContentHeight));
265 int maxX = std::max(static_cast<int>(ceilf(maxBaseX)),
267 int maxY = std::max(static_cast<int>(ceilf(maxBaseY)),
TiledTexture.cpp 107 ceilf(visibleArea.width() * scale),
108 ceilf(visibleArea.height() * scale));
125 computedArea.setWidth(ceilf(right) - computedArea.x());
126 computedArea.setHeight(ceilf(bottom) - computedArea.y());
GLWebViewState.cpp 260 static_cast<int>(ceilf(viewport.fRight * invTileContentWidth)),
261 static_cast<int>(ceilf(viewport.fBottom * invTileContentHeight)));
264 int viewMaxTileX = static_cast<int>(ceilf((viewport.width()-1) * invTileContentWidth)) + 1;
265 int viewMaxTileY = static_cast<int>(ceilf((viewport.height()-1) * invTileContentHeight)) + 1;
  /external/skia/include/core/
SkFloatingPoint.h 60 #define sk_float_ceil(x) ceilf(x)
  /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();
  /external/webkit/Source/WebKit/mac/WebView/
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);