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

1 2 3 4 5

  /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/android/layers/
FixedPositioning.cpp 137 m_nbRepeatX = ceilf((viewport.width() / m_layer->getWidth()) + 1);
138 m_offsetX = ceilf(x / m_layer->getWidth());
140 m_nbRepeatY = ceilf((viewport.height() / m_layer->getHeight()) + 1);
141 m_offsetY = ceilf(y / m_layer->getHeight());
  /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/native/opengl/libagl/
fp.cpp 67 x = x - ceilf(x + 0.5f) + 1.0f;
  /external/webkit/Source/WebCore/html/
HTMLCanvasElement.cpp 396 int right = clampToInteger(ceilf(logicalRect.maxX() * m_pageScaleFactor));
397 int bottom = clampToInteger(ceilf(logicalRect.maxY() * m_pageScaleFactor));
405 float width = clampToInteger(ceilf(logicalSize.width() * m_pageScaleFactor));
406 float height = clampToInteger(ceilf(logicalSize.height() * m_pageScaleFactor));
412 width = ceilf(width);
413 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/llvm/include/llvm/Target/
TargetLibraryInfo.h 49 /// float ceilf(float x);
50 ceilf, enumerator in enum:llvm::LibFunc::Func
  /external/skia/include/core/
SkFloatingPoint.h 53 #define sk_float_ceil(x) ceilf(x)
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
TileGrid.cpp 115 ceilf(contentArea.width() * scale),
116 ceilf(contentArea.height() * scale));
133 computedArea.setWidth(ceilf(right) - computedArea.x());
134 computedArea.setHeight(ceilf(bottom) - computedArea.y());
  /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);
  /frameworks/rs/
rsScriptC_Lib.cpp 51 x = x - ceilf(x + 0.5f) + 1.0f;
70 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));

Completed in 1198 milliseconds

1 2 3 4 5