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

12

/external/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);
H A Du_math.h78 static INLINE float ceilf( float f ) function
134 return x >= 0.0f ? floorf(x + 0.5f) : ceilf(x - 0.5f);
/external/mesa3d/src/mesa/main/
H A Dimports.h122 #define ceilf(f) ((float) ceil(f)) macro
148 static inline float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); }
262 #define CEILF(x) ceilf(x)
/external/skia/include/private/
H A DSkFloatingPoint.h64 #define sk_float_ceil(x) ceilf(x)
/external/v8/src/wasm/
H A Dwasm-external-refs.cc23 void f32_ceil_wrapper(float* param) { *param = ceilf(*param); }
/external/valgrind/memcheck/tests/
H A Dvcpu_fnfns.c39 printf(" ceilF(%+20.4e) = %+20.4e\n", (double)f, (double)ceilf(f));
/external/bison/darwin-lib/
H A Dmath.h694 # 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, "ceil
[all...]
/external/bison/lib/
H A Dmath.in.h382 # undef ceilf macro
383 # define ceilf rpl_ceilf macro
385 _GL_FUNCDECL_RPL (ceilf, float, (float x));
386 _GL_CXXALIAS_RPL (ceilf, float, (float x));
389 # undef ceilf macro
390 _GL_FUNCDECL_SYS (ceilf, float, (float x));
392 _GL_CXXALIAS_SYS (ceilf, float, (float x));
394 _GL_CXXALIASWARN (ceilf); variable
396 # undef ceilf macro
398 _GL_WARN_ON_USE (ceilf, "ceil
[all...]
/external/bison/linux-lib/
H A Dmath.h694 # 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, "ceil
[all...]
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_setup.c685 setup->emaj.sy = ceilf(vmin_y);
686 setup->emaj.lines = (int) ceilf(vmax_y - setup->emaj.sy);
690 setup->etop.sy = ceilf(vmid_y);
691 setup->etop.lines = (int) ceilf(vmax_y - setup->etop.sy);
695 setup->ebot.sy = ceilf(vmin_y);
696 setup->ebot.lines = (int) ceilf(vmid_y - setup->ebot.sy);
/external/clang/test/CodeGen/
H A Dlibcall-declarations.c62 float ceilf(float);
274 F(cbrtl), F(ceil), F(ceilf), F(ceill), F(cos),
361 // CHECK-NOERRNO: declare float @ceilf(float) [[NUW]]
546 // CHECK-ERRNO: declare float @ceilf(float) [[NUW]]
/external/webrtc/webrtc/modules/audio_processing/intelligibility/
H A Dintelligibility_enhancer.cc116 size_t erb_index = static_cast<size_t>(ceilf(
258 size_t erb_scale = static_cast<size_t>(ceilf(
/external/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h241 case LibFunc::ceil: case LibFunc::ceilf: case LibFunc::ceill:
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_arit.c241 {"ceil", &lp_build_ceil, &ceilf, round_values, Elements(round_values), 24.0 },
/external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/
H A D__clang_cuda_cmath.h55 __DEVICE__ float ceil(float __x) { return ::ceilf(__x); }
H A Dtgmath.h597 __tg_ceil(float __x) {return ceilf(__x);}
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_loops.c288 iterations = (int) ceilf((limit_value - counter_value.Value) /
/external/ltrace/etc/
H A Dlibm.so.conf145 float ceilf(float);
/external/llvm/lib/Analysis/
H A DVectorUtils.cpp200 case LibFunc::ceilf:
H A DTargetLibraryInfo.cpp201 TLI.setUnavailable(LibFunc::ceilf);
503 {"ceilf", "vceilf", 4},
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp352 case LibFunc::ceilf:
/external/skia/src/effects/
H A DSkGpuBlurUtils.cpp43 *radius = static_cast<int>(ceilf(sigma * 3.0f));
/external/mesa3d/src/gallium/state_trackers/vega/
H A Drenderer.c1240 x1 = (VGint) ceilf(x + width);
1241 y1 = (VGint) ceilf(y + height);
/external/clang/lib/Headers/
H A Dtgmath.h597 __tg_ceil(float __x) {return ceilf(__x);}
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp55 static_assert((std::is_same<decltype(ceilf(0)), float>::value), "");

Completed in 2532 milliseconds

12