/aosp12/bionic/libm/x86_64/ |
H A D | ceilf.S | 33 ENTRY(ceilf) 36 END(ceilf)
|
/aosp12/bionic/libm/x86/ |
H A D | ceilf.S | 33 ENTRY(ceilf) 39 END(ceilf)
|
/aosp12/hardware/qcom/display/msm8994/liboverlay/ |
H A D | overlayUtils.cpp | 277 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 D | overlayUtils.cpp | 286 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 D | Rect.h | 196 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 D | overlayUtils.cpp | 290 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 D | s_ceilf.c | 25 ceilf(float x) in ceilf() function
|
/aosp12/frameworks/base/libs/hwui/utils/ |
H A D | MathUtils.h | 82 return (int)(ceilf(angleInRads / acos(targetCosVal) / 2)) * 2; in divisionsNeededToApproximateArc()
|
H A D | Blur.cpp | 41 const float radiusCeil = ceilf(radius); in convertRadiusToInt()
|
/aosp12/bionic/libm/ |
H A D | builtins.cpp | 49 float ceilf(float x) { return __builtin_ceilf(x); } in ceilf() function
|
H A D | libm.map.txt | 54 ceilf;
|
/aosp12/frameworks/rs/ |
H A D | rsScriptC_Lib.cpp | 47 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 D | hwc_utils.h | 206 cropI.left = int(ceilf(cropF.left)); in integerizeSourceCrop() 207 cropI.top = int(ceilf(cropF.top)); in integerizeSourceCrop()
|
/aosp12/frameworks/native/libs/ui/ |
H A D | Transform.cpp | 265 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 D | hwc_utils.h | 231 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 D | SkiaPipeline.cpp | 169 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 D | hwc_utils.h | 281 cropI.left = int(ceilf(cropF.left)); in integerizeSourceCrop() 282 cropI.top = int(ceilf(cropF.top)); in integerizeSourceCrop()
|
/aosp12/frameworks/rs/cpu_ref/ |
H A D | rsCpuRuntimeMath.cpp | 115 EXPORT_F32_FN_F32(ceilf) in EXPORT_F32_FN_F32()
|
/aosp12/bionic/tests/headers/posix/ |
H A D | math_h.c | 152 FUNCTION(ceilf, float (*f)(float)); in math_h()
|
/aosp12/hardware/interfaces/graphics/composer/2.4/vts/functional/ |
H A D | VtsHalGraphicsComposerV2_4TargetTest.cpp | 439 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 D | math.h | 222 float ceilf(float __x);
|
/aosp12/hardware/qcom/display/msm8960/libhwcomposer/ |
H A D | hwc_mdpcomp.cpp | 289 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 D | hwc_display.cpp | 755 target->right = ceilf(source.right); in SetRect() 756 target->bottom = ceilf(source.bottom); in SetRect()
|
/aosp12/bionic/tests/ |
H A D | math_test.cpp | 755 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 D | hwc_display.cpp | 930 target->right = ceilf(source.right); in SetRect() 931 target->bottom = ceilf(source.bottom); in SetRect()
|