/external/llvm/test/Transforms/InstCombine/ |
win-math.ll | 58 ; WIN32-NOT: float @ceilf 61 ; WIN64: float @ceilf 64 ; MINGW32: float @ceilf 67 ; MINGW64: float @ceilf
|
/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/llvm/test/CodeGen/AArch64/ |
floatdp_1source.ll | 13 declare float @ceilf(float) readonly 44 %valceil = call float @ceilf(float %val1)
|
/external/llvm/test/CodeGen/PowerPC/ |
rounding-ops.ll | 59 %call = tail call float @ceilf(float %x) nounwind readnone 69 declare float @ceilf(float) nounwind readnone
|
/external/llvm/test/CodeGen/X86/ |
rounding-ops.ll | 57 %call = tail call float @ceilf(float %x) nounwind readnone 67 declare float @ceilf(float) nounwind readnone
|
/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/ |
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/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);
|
/cts/tests/tests/bionic/ |
bionic-unit-tests-cts_list.txt | 328 ceilf
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderCombineText.cpp | 72 textOrigin.move(boxRect.height() / 2 - ceilf(m_combinedTextWidth) / 2, style()->font().pixelSize());
|
RenderTextControlMultiLine.cpp | 67 return static_cast<LayoutUnit>(ceilf(charWidth * factor)) + scrollbarThickness();
|
/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/native/opengl/libagl/ |
fp.cpp | 67 x = x - ceilf(x + 0.5f) + 1.0f;
|
/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/core/svg/ |
SVGLengthContext.cpp | 258 float xHeight = ceilf(style->fontMetrics().xHeight()); 277 return value * ceilf(style->fontMetrics().xHeight());
|
/external/valgrind/main/memcheck/tests/ |
vcpu_fnfns.c | 39 printf(" ceilF(%+20.4e) = %+20.4e\n", (double)f, (double)ceilf(f));
|
/frameworks/rs/cpu_ref/ |
rsCpuRuntimeMath.cpp | 124 EXPORT_F32_FN_F32(ceilf) 194 { "_Z4ceilf", (void *)&ceilf, true },
|
/system/core/libutils/ |
BasicHashtable.cpp | 329 size_t count = ceilf(minimumCapacity / loadFactor) + 1; 339 *outCapacity = ceilf((count - 1) * loadFactor);
|
/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))
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
FontFastPath.cpp | 543 glyphOverflow->top = max<int>(glyphOverflow->top, ceilf(-it.minGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().ascent())); 544 glyphOverflow->bottom = max<int>(glyphOverflow->bottom, ceilf(it.maxGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().descent())); 545 glyphOverflow->left = ceilf(it.firstGlyphOverflow()); 546 glyphOverflow->right = ceilf(it.lastGlyphOverflow()); 561 // Using roundf() rather than ceilf() for the right edge as a compromise to
|
/external/bison/darwin-lib/ |
math.h | 694 # undef ceilf 695 # define ceilf rpl_ceilf 697 _GL_FUNCDECL_RPL (ceilf, float, (float x)); 698 _GL_CXXALIAS_RPL (ceilf, float, (float x)); 701 # undef ceilf 702 _GL_FUNCDECL_SYS (ceilf, float, (float x)); 704 _GL_CXXALIAS_SYS (ceilf, float, (float x)); 706 _GL_CXXALIASWARN (ceilf); 708 # undef ceilf macro 710 _GL_WARN_ON_USE (ceilf, "ceilf is unportable - [all...] |