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

1 2 3 4

  /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},
  /bionic/libm/man/
ceil.3 40 .Nm ceilf ,
50 .Fn ceilf "float x"
56 .Fn ceilf
78 .Fn ceilf
  /bionic/libm/i387/
s_ceilf.S 11 ENTRY(ceilf) function
  /external/webkit/WebCore/platform/graphics/cg/
IntRectCG.cpp 44 int r = static_cast<int>(ceilf(CGRectGetMaxX(rect)));
45 int b = static_cast<int>(ceilf(CGRectGetMaxY(rect)));
ImageCG.cpp 200 subimageRect.setWidth(ceilf(subimageRect.width() + leftPadding));
203 subimageRect.setHeight(ceilf(subimageRect.height() + topPadding));
  /external/webkit/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 47 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning
  /external/webkit/WebCore/svg/
SVGFontFaceElement.cpp 132 return static_cast<unsigned>(ceilf(value.toFloat()));
137 return static_cast<int>(ceilf(getAttribute(x_heightAttr).toFloat()));
225 return static_cast<int>(ceilf(ascentValue.toFloat()));
230 return static_cast<int>(unitsPerEm()) - static_cast<int>(ceilf(vertOriginY.toFloat()));
234 return static_cast<int>(ceilf(unitsPerEm() * 0.8f));
247 int descent = static_cast<int>(ceilf(descentValue.toFloat()));
254 return static_cast<int>(ceilf(vertOriginY.toFloat()));
258 return static_cast<int>(ceilf(unitsPerEm() * 0.2f));
  /external/webkit/WebCore/platform/graphics/
WidthIterator.cpp 65 m_padPerSpace = ceilf(m_run.padding() / numSpaces);
192 width = ceilf(width);
199 width += ceilf(totalWidth) - totalWidth;
FloatRect.cpp 117 int r = static_cast<int>(ceilf(rect.right()));
118 int b = static_cast<int>(ceilf(rect.bottom()));
SimpleFontData.cpp 151 m_adjustedSpaceWidth = m_treatAsFixedPitch ? ceilf(width) : roundf(width);
Font.h 124 int spaceWidth() const { return (int)ceilf(primaryFont()->adjustedSpaceWidth() + m_letterSpacing); }
  /bionic/libm/src/
s_ceilf.c 26 ceilf(float x) function
  /external/skia/include/core/
SkFloatingPoint.h 60 #define sk_float_ceil(x) ceilf(x)
  /external/webkit/WebCore/svg/graphics/
SVGPaintServerPattern.cpp 125 int numY = static_cast<int>(ceilf(tileRect.height() / tileHeight)) + 1;
126 int numX = static_cast<int>(ceilf(tileRect.width() / tileWidth)) + 1;
  /external/webkit/WebKit/mac/WebView/
WebTextCompletionController.mm 139 float width = ceilf([[_completions objectAtIndex:i] sizeWithAttributes:attributes].width);
147 maxWidth = ceilf([NSScrollView frameSizeForContentSize:NSMakeSize(maxWidth, 100.0f) hasHorizontalScroller:NO hasVerticalScroller:YES borderType:NSNoBorder].width);
148 maxWidth = ceilf([NSWindow frameRectForContentRect:NSMakeRect(0.0f, 0.0f, maxWidth, 100.0f) styleMask:NSBorderlessWindowMask].size.width);
  /external/webkit/WebCore/platform/graphics/win/
FontWin.cpp 53 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning
UniscribeController.cpp 65 m_padPerSpace = ceilf(m_run.padding() / numSpaces);
355 advance = ceilf(advance);
364 advance += ceilf(totalWidth) - totalWidth;
  /external/webkit/WebCore/rendering/
RenderTextControlMultiLine.cpp 86 return static_cast<int>(ceilf(charWidth * factor)) + scrollbarThickness();
RenderFileUploadControl.cpp 259 m_maxPrefWidth = (int)ceilf(charWidth * defaultWidthNumChars);
  /frameworks/base/opengl/libagl/
fp.cpp 67 x = x - ceilf(x + 0.5f) + 1.0f;
  /external/webkit/WebCore/html/
HTMLCanvasElement.cpp 302 float wf = ceilf(logicalSize.width() * pageScaleFactor);
303 float hf = ceilf(logicalSize.height() * pageScaleFactor);
  /external/webkit/WebCore/platform/graphics/wx/
FontWx.cpp 77 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning
  /external/quake/quake/src/WinQuake/
snd_android.cpp 108 x = x - ceilf(x + 0.5f) + 1.0f;
  /external/webkit/JavaScriptCore/wtf/
MathExtras.h 111 float integer = ceilf(num);

Completed in 1619 milliseconds

1 2 3 4