Home
last modified time | relevance | path

Searched refs:ceilf (Results 1 - 25 of 60) sorted by relevance

123

/third_party/musl/src/math/i386/
H A Dfloor.s34 .global ceilf
35 .type ceilf,@function
36 ceilf: label
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
H A Dmath_ceil_test.cpp41 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the ceilf interface.
48 bool testResult = FloatUlpCmp(g_ceilfData[i].expected, ceilf(g_ceilfData[i].input), 1); in HWTEST_F()
55 * @tc.desc: When the parameter of ceilf is valid, test the return value of the function.
60 EXPECT_FLOAT_EQ(1.0f, ceilf(0.8f)); in HWTEST_F()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_arit.c304 WRAP(ceilf)
310 #define ceilf wrap_ceilf macro
330 {"ceil", &lp_build_ceil, &ceilf, round_values, ARRAY_SIZE(round_values), 24.0 },
/third_party/musl/src/math/s390x/
H A Dceilf.c5 float ceilf(float x) in ceilf() function
13 #include "../ceilf.c"
/third_party/musl/src/math/aarch64/
H A Dceilf.c3 float ceilf(float x) in ceilf() function
/third_party/musl/src/math/powerpc64/
H A Dceilf.c5 float ceilf(float x) in ceilf() function
13 #include "../ceilf.c"
/third_party/ffmpeg/libavfilter/
H A Dvf_v360.c1423 const int u_shift = ceilf(ew * u_face); in cube3x2_to_xyz()
1424 const int v_shift = ceilf(eh * v_face); in cube3x2_to_xyz()
1425 const int ewi = ceilf(ew * (u_face + 1)) - u_shift; in cube3x2_to_xyz()
1426 const int ehi = ceilf(eh * (v_face + 1)) - v_shift; in cube3x2_to_xyz()
1470 ewi = ceilf(ew * (u_face + 1)) - ceilf(ew * u_face); in xyz_to_cube3x2()
1471 ehi = ceilf(eh * (v_face + 1)) - ceilf(eh * v_face); in xyz_to_cube3x2()
1494 u_shift = ceilf(ew * u_face); in xyz_to_cube3x2()
1495 v_shift = ceilf(e in xyz_to_cube3x2()
[all...]
/third_party/musl/src/math/
H A Dceilf.c3 float ceilf(float x) in ceilf() function
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dceilf.c3 float ceilf(float x) in ceilf() function
/third_party/musl/libc-test/src/math/
H A Dceilf.c6 #include "ucb/ceilf.h"
7 #include "sanity/ceilf.h"
8 #include "special/ceilf.h"
27 y = ceilf(p->x); in main()
31 printf("%s:%d: bad fp exception: %s ceilf(%a)=%a, want %s", in main()
38 printf("%s:%d: %s ceilf(%a) want %a got %a ulperr %.3f = %a + %a\n", in main()
/third_party/skia/src/core/
H A DSkGpuBlurUtils.h97 return IsEffectivelyZeroSigma(sigma) ? 0 : static_cast<int>(ceilf(sigma * 3.0f)); in SigmaRadius()
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_dirty_surfaces.h90 MIN2((unsigned)ceilf(pss->max_lod) + psv->u.tex.first_level, psv->u.tex.last_level), flush); in util_dirty_surfaces_use_for_sampling_with()
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_viewport.c108 scissor->maxx = ceilf(maxx); in r600_get_scissor_from_viewport()
109 scissor->maxy = ceilf(maxy); in r600_get_scissor_from_viewport()
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_setup.c628 setup->emaj.sy = ceilf(vmin_y); in setup_tri_edges()
629 setup->emaj.lines = (int) ceilf(vmax_y - setup->emaj.sy); in setup_tri_edges()
633 setup->etop.sy = ceilf(vmid_y); in setup_tri_edges()
634 setup->etop.lines = (int) ceilf(vmax_y - setup->etop.sy); in setup_tri_edges()
638 setup->ebot.sy = ceilf(vmin_y); in setup_tri_edges()
639 setup->ebot.lines = (int) ceilf(vmid_y - setup->ebot.sy); in setup_tri_edges()
/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_stipple.c157 intlength = ceilf(length); in stipple_line()
/third_party/skia/include/private/
H A DSkFloatingPoint.h50 #define sk_float_ceil(x) ceilf(x)
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_state_viewport.c196 scissor->maxx = ceilf(maxx); in si_get_scissor_from_viewport()
197 scissor->maxy = ceilf(maxy); in si_get_scissor_from_viewport()
/third_party/node/deps/v8/src/wasm/
H A Dwasm-external-refs.cc55 WriteUnalignedValue<float>(data, ceilf(ReadUnalignedValue<float>(data))); in f32_ceil_wrapper()
412 simd_float_round_wrapper<float, &ceilf>(data); in f32x4_ceil_wrapper()
/third_party/ffmpeg/compat/cuda/
H A Dcuda_runtime.h175 static inline __device__ float ceilf(float a) { return __builtin_ceilf(a); } in ceilf() function
/third_party/musl/porting/liteos_a/kernel/include/
H A Dmath.h168 float ceilf(float);
/third_party/musl/porting/uniproton/kernel/include/
H A Dmath.h168 float ceilf(float);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dmath.h168 float ceilf(float);
/third_party/musl/include/
H A Dmath.h168 float ceilf(float);
/third_party/musl/libc-test/src/api/
H A Dmath.c79 {float(*p)(float) = ceilf;} in f()
/third_party/skia/modules/skplaintexteditor/src/
H A Dshape.cpp290 result.verticalAdvance = (int)ceilf(height); in Shape()

Completed in 19 milliseconds

123