Home
last modified time | relevance | path

Searched refs:ceilf (Results 1 – 25 of 43) sorted by relevance

12

/aosp12/bionic/libm/x86_64/
H A Dceilf.S33 ENTRY(ceilf)
36 END(ceilf)
/aosp12/bionic/libm/x86/
H A Dceilf.S33 ENTRY(ceilf)
39 END(ceilf)
/aosp12/hardware/qcom/display/msm8994/liboverlay/
H A DoverlayUtils.cpp277 float horDscale = ceilf((float)src_w / (float)dst_w); in getDecimationFactor()
278 float verDscale = ceilf((float)src_h / (float)dst_h); in getDecimationFactor()
282 horDscale = powf(2.0f, ceilf(log2f(horDscale))); in getDecimationFactor()
283 verDscale = powf(2.0f, ceilf(log2f(verDscale))); in getDecimationFactor()
/aosp12/hardware/qcom/display/msm8226/liboverlay/
H A DoverlayUtils.cpp286 float horDscale = ceilf((float)src_w / (float)dst_w); in getDecimationFactor()
287 float verDscale = ceilf((float)src_h / (float)dst_h); in getDecimationFactor()
290 horDscale = powf(2.0f, ceilf(log2f(horDscale))); in getDecimationFactor()
291 verDscale = powf(2.0f, ceilf(log2f(verDscale))); in getDecimationFactor()
/aosp12/frameworks/base/libs/hwui/
H A DRect.h196 right = ceilf(right - Vertex::GeometryFudgeFactor()); in snapGeometryToPixelBoundaries()
197 bottom = ceilf(bottom - Vertex::GeometryFudgeFactor()); in snapGeometryToPixelBoundaries()
220 right = ceilf(right); in roundOut()
221 bottom = ceilf(bottom); in roundOut()
/aosp12/hardware/qcom/display/msm8084/liboverlay/
H A DoverlayUtils.cpp290 horDscale = ceilf((float)src_w / (float)dst_w); in getDecimationFactor()
291 verDscale = ceilf((float)src_h / (float)dst_h); in getDecimationFactor()
294 horDscale = powf(2.0f, ceilf(log2f(horDscale))); in getDecimationFactor()
295 verDscale = powf(2.0f, ceilf(log2f(verDscale))); in getDecimationFactor()
/aosp12/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_ceilf.c25 ceilf(float x) in ceilf() function
/aosp12/frameworks/base/libs/hwui/utils/
H A DMathUtils.h82 return (int)(ceilf(angleInRads / acos(targetCosVal) / 2)) * 2; in divisionsNeededToApproximateArc()
H A DBlur.cpp41 const float radiusCeil = ceilf(radius); in convertRadiusToInt()
/aosp12/bionic/libm/
H A Dbuiltins.cpp49 float ceilf(float x) { return __builtin_ceilf(x); } in ceilf() function
H A Dlibm.map.txt54 ceilf;
/aosp12/frameworks/rs/
H A DrsScriptC_Lib.cpp47 x = x - ceilf(x + 0.5f) + 1.0f;
66 x = x - ceilf(x + 0.5f) + 1.0f;
/aosp12/hardware/qcom/display/msm8084/libhwcomposer/
H A Dhwc_utils.h206 cropI.left = int(ceilf(cropF.left)); in integerizeSourceCrop()
207 cropI.top = int(ceilf(cropF.top)); in integerizeSourceCrop()
/aosp12/frameworks/native/libs/ui/
H A DTransform.cpp265 r.right = static_cast<int32_t>(ceilf(std::max({lt[0], rt[0], lb[0], rb[0]}))); in transform()
266 r.bottom = static_cast<int32_t>(ceilf(std::max({lt[1], rt[1], lb[1], rb[1]}))); in transform()
/aosp12/hardware/qcom/display/msm8226/libhwcomposer/
H A Dhwc_utils.h231 cropI.left = int(ceilf(cropF.left)); in integerizeSourceCrop()
232 cropI.top = int(ceilf(cropF.top)); in integerizeSourceCrop()
/aosp12/frameworks/base/libs/hwui/pipeline/skia/
H A DSkiaPipeline.cpp169 const int surfaceWidth = ceilf(node->getWidth() / float(LAYER_SIZE)) * LAYER_SIZE; in createOrUpdateLayer()
170 const int surfaceHeight = ceilf(node->getHeight() / float(LAYER_SIZE)) * LAYER_SIZE; in createOrUpdateLayer()
/aosp12/hardware/qcom/display/msm8994/libhwcomposer/
H A Dhwc_utils.h281 cropI.left = int(ceilf(cropF.left)); in integerizeSourceCrop()
282 cropI.top = int(ceilf(cropF.top)); in integerizeSourceCrop()
/aosp12/frameworks/rs/cpu_ref/
H A DrsCpuRuntimeMath.cpp115 EXPORT_F32_FN_F32(ceilf) in EXPORT_F32_FN_F32()
/aosp12/bionic/tests/headers/posix/
H A Dmath_h.c152 FUNCTION(ceilf, float (*f)(float)); in math_h()
/aosp12/hardware/interfaces/graphics/composer/2.4/vts/functional/
H A DVtsHalGraphicsComposerV2_4TargetTest.cpp439 int32_t displayWidth = static_cast<int32_t>(std::ceilf(displayCrop.right - displayCrop.left)); in sendRefreshFrame()
440 int32_t displayHeight = static_cast<int32_t>(std::ceilf(displayCrop.bottom - displayCrop.top)); in sendRefreshFrame()
/aosp12/bionic/libc/include/
H A Dmath.h222 float ceilf(float __x);
/aosp12/hardware/qcom/display/msm8960/libhwcomposer/
H A Dhwc_mdpcomp.cpp289 float w_dscale = ceilf((float)crop_w / (float)dst_w); in isValidDimension()
290 float h_dscale = ceilf((float)crop_h / (float)dst_h); in isValidDimension()
/aosp12/hardware/qcom/display/msm8996/sdm/libs/hwc/
H A Dhwc_display.cpp755 target->right = ceilf(source.right); in SetRect()
756 target->bottom = ceilf(source.bottom); in SetRect()
/aosp12/bionic/tests/
H A Dmath_test.cpp755 TEST(MATH_TEST, ceilf) { in TEST() argument
756 ASSERT_FLOAT_EQ(1.0f, ceilf(0.9f)); in TEST()
1774 DoMathDataTest<1>(g_ceilf_intel_data, ceilf); in TEST()
/aosp12/hardware/qcom/display/msm8909/sdm/libs/hwc/
H A Dhwc_display.cpp930 target->right = ceilf(source.right); in SetRect()
931 target->bottom = ceilf(source.bottom); in SetRect()

12