/third_party/musl/src/math/i386/ |
H A D | floor.s | 34 .global ceilf 35 .type ceilf,@function 36 ceilf: label
|
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_ceil_test.cpp | 41 * @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 D | lp_test_arit.c | 304 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 D | ceilf.c | 5 float ceilf(float x) in ceilf() function 13 #include "../ceilf.c"
|
/third_party/musl/src/math/aarch64/ |
H A D | ceilf.c | 3 float ceilf(float x) in ceilf() function
|
/third_party/musl/src/math/powerpc64/ |
H A D | ceilf.c | 5 float ceilf(float x) in ceilf() function 13 #include "../ceilf.c"
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_v360.c | 1423 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 D | ceilf.c | 3 float ceilf(float x) in ceilf() function
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | ceilf.c | 3 float ceilf(float x) in ceilf() function
|
/third_party/musl/libc-test/src/math/ |
H A D | ceilf.c | 6 #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 D | SkGpuBlurUtils.h | 97 return IsEffectivelyZeroSigma(sigma) ? 0 : static_cast<int>(ceilf(sigma * 3.0f)); in SigmaRadius()
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_dirty_surfaces.h | 90 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 D | r600_viewport.c | 108 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 D | sp_setup.c | 628 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 D | draw_pipe_stipple.c | 157 intlength = ceilf(length); in stipple_line()
|
/third_party/skia/include/private/ |
H A D | SkFloatingPoint.h | 50 #define sk_float_ceil(x) ceilf(x)
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_state_viewport.c | 196 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 D | wasm-external-refs.cc | 55 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 D | cuda_runtime.h | 175 static inline __device__ float ceilf(float a) { return __builtin_ceilf(a); } in ceilf() function
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | math.h | 168 float ceilf(float);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | math.h | 168 float ceilf(float);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | math.h | 168 float ceilf(float);
|
/third_party/musl/include/ |
H A D | math.h | 168 float ceilf(float);
|
/third_party/musl/libc-test/src/api/ |
H A D | math.c | 79 {float(*p)(float) = ceilf;} in f()
|
/third_party/skia/modules/skplaintexteditor/src/ |
H A D | shape.cpp | 290 result.verticalAdvance = (int)ceilf(height); in Shape()
|