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

123

/freebsd-current/lib/msun/i387/
H A Ds_ceil.S37 ENTRY(ceil)
56 END(ceil)
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Drandom.h64 get_random_u32_inclusive(uint32_t floor, uint32_t ceil) argument
69 MPASS(ceil >= floor);
72 t = ceil - floor + 1;
/freebsd-current/lib/msun/src/
H A Ds_ceil.c13 * ceil(x)
18 * Inexact flag raised if x not equal to ceil(x).
29 ceil(double x) function
72 __weak_reference(ceil, ceill);
H A Dmath.h263 double ceil(double);
/freebsd-current/contrib/llvm-project/clang/lib/Headers/hlsl/
H A Dhlsl_intrinsics.h84 // ceil builtins
88 half ceil(half);
90 half2 ceil(half2);
92 half3 ceil(half3);
94 half4 ceil(half4);
98 float ceil(float);
100 float2 ceil(float2);
102 float3 ceil(float3);
104 float4 ceil(float4);
107 double ceil(doubl
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__math/
H A Drounding_functions.h27 // ceil
29 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI float ceil(float __x) _NOEXCEPT { return __builtin_ceilf(__x); }
32 _LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI double ceil(double __x) _NOEXCEPT {
36 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI long double ceil(long double __x) _NOEXCEPT {
41 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI double ceil(_A1 __x) _NOEXCEPT {
/freebsd-current/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h47 __DEVICE__ double ceil(double);
48 __DEVICE__ float ceil(float);
209 using ::ceil;
H A D__clang_cuda_cmath.h49 __DEVICE__ float ceil(float __x) { return ::ceilf(__x); } function
249 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, ceil)
376 using ::ceil;
H A Dtgmath.h586 // ceil
594 __tg_ceil(double __x) {return ceil(__x);}
600 #undef ceil macro
601 #define ceil(__x) __tg_ceil(__tg_promote1((__x))(__x)) macro
H A D__clang_hip_cmath.h213 __DEF_FUN1(float, ceil)
489 __HIP_OVERLOAD1(double, ceil)
659 using ::ceil;
/freebsd-current/contrib/netbsd-tests/lib/libm/
H A Dt_ceil.c46 * ceil(3)
51 atf_tc_set_md_var(tc, "descr", "A basic test of ceil(3)");
59 ATF_CHECK(fabs(ceil(x) - 1) < SMALL_NUM);
60 ATF_CHECK(fabs(ceil(y) - 1) < SMALL_NUM);
66 atf_tc_set_md_var(tc, "descr", "Test ceil(NaN) == NaN");
73 ATF_CHECK(isnan(ceil(x)) != 0);
79 atf_tc_set_md_var(tc, "descr", "Test ceil(-Inf) == -Inf");
85 double y = ceil(x);
88 atf_tc_fail_nonfatal("ceil(-Inf) != -Inf");
94 atf_tc_set_md_var(tc, "descr", "Test ceil(
[all...]
/freebsd-current/sys/contrib/dpdk_rte_lpm/
H A Drte_common.h309 typeof(v) ceil = RTE_ALIGN_MUL_CEIL(v, mul); \
311 (ceil - v) > (v - floor) ? floor : ceil; \
/freebsd-current/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetTransformInfo.cpp176 return {Intrinsic::ceil, FTZ_Any};
178 return {Intrinsic::ceil, FTZ_MustBeOff};
180 return {Intrinsic::ceil, FTZ_MustBeOn};
/freebsd-current/lib/msun/bsdsrc/
H A Db_tgamma.c308 y = ceil(x);
317 if (y == ceil(y))
/freebsd-current/contrib/llvm-project/libcxx/include/__chrono/
H A Dtime_point.h102 ceil(const time_point<_Clock, _Duration>& __t) { function in namespace:chrono
103 return time_point<_Clock, _ToDuration>{chrono::ceil<_ToDuration>(__t.time_since_epoch())};
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerExpectIntrinsic.cpp70 uint32_t LikelyBW = ceil((TrueProb * (double)(INT32_MAX - 1)) + 1.0);
71 uint32_t UnlikelyBW = ceil((FalseProb * (double)(INT32_MAX - 1)) + 1.0);
/freebsd-current/lib/msun/
H A DMakefile173 ceil.3 cacos.3 ccos.3 ccosh.3 cexp.3 \
203 MLINKS+=ceil.3 ceilf.3 ceil.3 ceill.3
/freebsd-current/include/
H A Dtgmath.h165 #define ceil(x) __tg_simple(x, ceil) macro
/freebsd-current/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcmath.inc163 using ::ceil;
/freebsd-current/contrib/llvm-project/libcxx/include/
H A Dmath.h62 floating_point ceil (arithmetic x);
452 using std::__math::ceil;
/freebsd-current/contrib/lua/src/
H A Dlmathlib.c108 lua_settop(L, 1); /* integer is its own ceil */
110 lua_Number d = l_mathop(ceil)(luaL_checknumber(L, 1));
147 lua_Number ip = (n < 0) ? l_mathop(ceil)(n) : l_mathop(floor)(n);
710 {"ceil", math_ceil},
/freebsd-current/sys/tools/sound/
H A Dfeeder_rate_mkfilter.awk62 function ceil(x, r) function
779 Z_UNSHIFT = ceil(log(v) / log(2.0));
/freebsd-current/tools/regression/include/tgmath/
H A Dtgmath.c104 TGMACRO_REAL(ceil)
482 PRINT("ceil",
483 PASS_REAL_ARG_REAL_RET(ceil));
/freebsd-current/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVELaneInterleavingPass.cpp222 case Intrinsic::ceil:
/freebsd-current/contrib/ntp/libntp/
H A Dsystime.c121 sys_fuzz_nsec = (long)ceil(sys_fuzz * 1e9);

Completed in 482 milliseconds

123