Home
last modified time | relevance | path

Searched refs:ceil (Results 1 – 25 of 129) sorted by relevance

123456

/freebsd/contrib/bc/tests/bc/
H A Dlib2_ceil.txt1 ceil(0, 0)
2 ceil(0, 1)
3 ceil(0, 100)
4 ceil(1, 0)
5 ceil(1, 3)
6 ceil(1.4, 0)
7 ceil(1.5, 0)
8 ceil(34.45, 2)
9 ceil(64.1223, 4)
10 ceil(283.1983893, 6)
[all …]
/freebsd/lib/libc/tests/stdbit/
H A Dstdc_bit_ceil_test.c12 type ceil = 1; \
14 while (ceil < value && ceil != 0) \
15 ceil <<= 1; \
17 return (ceil); \
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Drandom.h73 get_random_u32_inclusive(uint32_t floor, uint32_t ceil) in get_random_u32_inclusive() argument
78 MPASS(ceil >= floor); in get_random_u32_inclusive()
81 t = ceil - floor + 1; in get_random_u32_inclusive()
/freebsd/lib/msun/i387/
H A Ds_ceil.S37 ENTRY(ceil)
56 END(ceil)
/freebsd/lib/msun/src/
H A Ds_ceil.c29 ceil(double x) in ceil() function
72 __weak_reference(ceil, ceill);
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__math/
H A Drounding_functions.h29 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI float ceil(float __x) _NOEXCEPT { return __builtin_c… in ceil() function
32 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI double ceil(double __x) _NOEXCEPT { in ceil() function
36 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI long double ceil(long double __x) _NOEXCEPT { in ceil() function
41 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI double ceil(_A1 __x) _NOEXCEPT { in ceil() function
/freebsd/contrib/llvm-project/libcxx/include/__math/
H A Drounding_functions.h29 [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI float ceil(float __x) _NOEXCEPT { return __builtin_c… in ceil() function
32 [[__nodiscard__]] _LIBCPP_HIDE_FROM_ABI double ceil(double __x) _NOEXCEPT { in ceil() function
36 [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI long double ceil(long double __x) _NOEXCEPT { in ceil() function
41 [[__nodiscard__]] inline _LIBCPP_HIDE_FROM_ABI double ceil(_A1 __x) _NOEXCEPT { in ceil() function
/freebsd/contrib/netbsd-tests/lib/libm/
H A Dt_ceil.c59 ATF_CHECK(fabs(ceil(x) - 1) < SMALL_NUM); in ATF_TC_BODY()
60 ATF_CHECK(fabs(ceil(y) - 1) < SMALL_NUM); in ATF_TC_BODY()
73 ATF_CHECK(isnan(ceil(x)) != 0); in ATF_TC_BODY()
85 double y = ceil(x); in ATF_TC_BODY()
100 double y = ceil(x); in ATF_TC_BODY()
115 double y = ceil(x); in ATF_TC_BODY()
130 double y = ceil(x); in ATF_TC_BODY()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fadvise/
H A Dfadvise_willneed_limit.ksh97 typeset -i ceil=$((budget + budget / 10 + 1048576))
98 log_must test $peak -le $ceil
/freebsd/contrib/file/magic/Magdir/
H A Dvacuum-cleaner16 # int32_t min_ceil; /* 4: 100 mm == 10 cm == min. ceil */
17 # int32_t max_ceil; /* 8: 10000 mm == 100 m == max. ceil */
/freebsd/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); } in ceil() function
249 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, ceil)
376 using ::ceil;
H A D__clang_hip_cmath.h213 __DEF_FUN1(float, ceil)
495 __HIP_OVERLOAD1(double, ceil)
665 using ::ceil;
/freebsd/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/lib/msun/bsdsrc/
H A Db_tgamma.c308 y = ceil(x); in neg_gam()
317 if (y == ceil(y)) in neg_gam()
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dtime_point.h111 inline _LIBCPP_HIDE_FROM_ABI constexpr time_point<_Clock, _ToDuration> ceil(const time_point<_Clock…
112 return time_point<_Clock, _ToDuration>{chrono::ceil<_ToDuration>(__t.time_since_epoch())};
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetTransformInfo.cpp183 return {Intrinsic::ceil, FTZ_Any}; in convertNvvmIntrinsicToLlvm()
185 return {Intrinsic::ceil, FTZ_MustBeOff}; in convertNvvmIntrinsicToLlvm()
187 return {Intrinsic::ceil, FTZ_MustBeOn}; in convertNvvmIntrinsicToLlvm()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerExpectIntrinsic.cpp70 uint32_t LikelyBW = ceil((TrueProb * (double)(INT32_MAX - 1)) + 1.0); in getBranchWeight()
71 uint32_t UnlikelyBW = ceil((FalseProb * (double)(INT32_MAX - 1)) + 1.0); in getBranchWeight()
/freebsd/contrib/sqlite3/autosetup/teaish/
H A Dfeature.tcl134 if {[msg-quiet proj-check-function-in-lib ceil m]} {
/freebsd/include/
H A Dtgmath.h165 #define ceil(x) __tg_simple(x, ceil) macro
/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/
H A DNearestIntegerOperations.h55 LIBC_INLINE T ceil(T x) { in ceil() function
101 return -ceil(-x); in floor()
/freebsd/lib/msun/
H A DMakefile186 ceil.3 cacos.3 ccos.3 ccosh.3 cexp.3 \
221 MLINKS+=ceil.3 ceilf.3 ceil.3 ceill.3
H A DSymbol.map66 ceil;
/freebsd/tools/tools/git/
H A Dmfc-candidates.lua141 local qtr = math.ceil(month / 3)
/freebsd/contrib/llvm-project/libcxx/include/
H A Dmath.h446 using std::__math::ceil;

123456