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

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
IntRectCG.cpp 42 int r = static_cast<int>(ceilf(CGRectGetMaxX(rect)));
43 int b = static_cast<int>(ceilf(CGRectGetMaxY(rect)));
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/mac/
IntRectMac.mm 42 int r = static_cast<int>(ceilf(NSMaxX(rect)));
43 int b = static_cast<int>(ceilf(NSMaxY(rect)));
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebFloatQuad.cpp 45 int right = static_cast<int>(ceilf(max(max(max(p[0].x, p[1].x), p[2].x), p[3].x)));
46 int bottom = static_cast<int>(ceilf(max(max(max(p[0].y, p[1].y), p[2].y), p[3].y)));
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ceilf.c 25 ceilf(float x) function
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontFaceElement.cpp 129 return static_cast<unsigned>(ceilf(value.toFloat()));
134 return static_cast<int>(ceilf(fastGetAttribute(x_heightAttr).toFloat()));
222 return static_cast<int>(ceilf(ascentValue.toFloat()));
227 return static_cast<int>(unitsPerEm()) - static_cast<int>(ceilf(vertOriginY.toFloat()));
231 return static_cast<int>(ceilf(unitsPerEm() * 0.8f));
244 int descent = static_cast<int>(ceilf(descentValue.toFloat()));
251 return static_cast<int>(ceilf(vertOriginY.toFloat()));
255 return static_cast<int>(ceilf(unitsPerEm() * 0.2f));
SVGLengthContext.cpp 258 float xHeight = ceilf(style->fontMetrics().xHeight());
277 return value * ceilf(style->fontMetrics().xHeight());
  /external/clang/test/CodeGen/
libcall-declarations.c 19 float ceilf(float);
81 atan2f, ceil, ceill, ceilf, copysign, copysignl, copysignf, cos, cosl, cosf,
103 // CHECK-NOERRNO: declare float @ceilf(float) [[NUW]]
164 // CHECK-ERRNO: declare float @ceilf(float) [[NUW]]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
FontComplexTextMac.cpp 62 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning
139 glyphOverflow->top = max<int>(glyphOverflow->top, ceilf(-controller.minGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().ascent()));
140 glyphOverflow->bottom = max<int>(glyphOverflow->bottom, ceilf(controller.maxGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().descent()));
141 glyphOverflow->left = max<int>(0, ceilf(-controller.minGlyphBoundingBoxX()));
142 glyphOverflow->right = max<int>(0, ceilf(controller.maxGlyphBoundingBoxX() - controller.totalWidth()));
  /frameworks/base/core/jni/
android_util_FloatMath.cpp 13 static float CeilF(JNIEnv* env, jobject clazz, float x) {
14 return ceilf(x);
44 {"ceil", "(F)F", (void*) MathUtilsGlue::CeilF},
  /frameworks/native/opengl/libagl/
fp.cpp 67 x = x - ceilf(x + 0.5f) + 1.0f;
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatSize.h 182 return IntSize(clampToInteger(ceilf(p.width())), clampToInteger(ceilf(p.height())));
FloatPoint.h 227 return IntPoint(clampToInteger(ceilf(p.x())), clampToInteger(ceilf(p.y())));
  /external/chromium_org/remoting/client/plugin/
pepper_view.cc 126 view_size_.set(ceilf(dips_size_.width() * dips_to_view_scale_),
127 ceilf(dips_size_.height() * dips_to_view_scale_));
147 ceilf(pp_clip.right() * dips_to_view_scale_),
148 ceilf(pp_clip.bottom() * dips_to_view_scale_));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControlMultiLine.cpp 67 return static_cast<LayoutUnit>(ceilf(charWidth * factor)) + scrollbarThickness();
RenderCombineText.cpp 72 textOrigin.move(boxRect.height() / 2 - ceilf(m_combinedTextWidth) / 2, style()->font().pixelSize());
  /hardware/qcom/display/msm8974/liboverlay/
overlayUtils.cpp 263 horDscale = ceilf((float)src_w / (float)dst_w);
264 verDscale = ceilf((float)src_h / (float)dst_h);
267 horDscale = powf(2.0f, ceilf(log2f(horDscale)));
268 verDscale = powf(2.0f, ceilf(log2f(verDscale)));
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollElasticityController.mm 287 FloatSize dampedDelta(ceilf(elasticDeltaForReboundDelta(m_stretchScrollForce.width())), ceilf(elasticDeltaForReboundDelta(m_stretchScrollForce.height())));
304 return num > 0 ? ceilf(num - 0.5f) : floorf(num + 0.5f);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_dirty_surfaces.h 90 MIN2((unsigned)ceilf(pss->max_lod) + psv->u.tex.first_level, psv->u.tex.last_level), flush);
  /external/mesa3d/src/gallium/auxiliary/util/
u_dirty_surfaces.h 90 MIN2((unsigned)ceilf(pss->max_lod) + psv->u.tex.first_level, psv->u.tex.last_level), flush);
  /frameworks/base/libs/hwui/
Layer.cpp 63 return uint32_t(ceilf(layerWidth / float(LAYER_SIZE)) * LAYER_SIZE);
67 return uint32_t(ceilf(layerHeight / float(LAYER_SIZE)) * LAYER_SIZE);
Rect.h 195 right = ceilf(right - Vertex::gGeometryFudgeFactor);
196 bottom = ceilf(bottom - Vertex::gGeometryFudgeFactor);
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMath.cpp 124 EXPORT_F32_FN_F32(ceilf)
194 { "_Z4ceilf", (void *)&ceilf, true },
  /frameworks/rs/
rsScriptC_Lib.cpp 53 x = x - ceilf(x + 0.5f) + 1.0f;
72 x = x - ceilf(x + 0.5f) + 1.0f;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.h 122 #define ceilf(f) ((float) ceil(f)) macro
148 static inline float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); }
252 *** CEILF: ceiling of float
262 #define CEILF(x) ceilf(x)
270 #define CEILF(x) ((GLfloat) ceil(x))
  /external/mesa3d/src/mesa/main/
imports.h 122 #define ceilf(f) ((float) ceil(f)) macro
148 static inline float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); }
252 *** CEILF: ceiling of float
262 #define CEILF(x) ceilf(x)
270 #define CEILF(x) ((GLfloat) ceil(x))

Completed in 1609 milliseconds

1 2 3 4 5 6 7 8