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

1234

/openbsd-current/lib/libm/arch/hppa/
H A Ds_ceil.c11 ceil(double x) function
25 DEF_STD(ceil); variable
26 LDBL_UNUSED_CLONE(ceil); variable
/openbsd-current/lib/libm/arch/amd64/
H A Ds_ceil.S11 ENTRY(ceil)
12 RETGUARD_SETUP(ceil, r11)
25 RETGUARD_CHECK(ceil, r11)
27 END_STD(ceil)
/openbsd-current/lib/libm/arch/i387/
H A Ds_ceil.S9 ENTRY(ceil)
26 END_STD(ceil)
/openbsd-current/gnu/usr.bin/perl/dist/Safe/t/
H A Dsafe3.t16 use POSIX qw(ceil);
23 my $masksize = ceil( Opcode::opcodes / 8 );
/openbsd-current/lib/libm/src/
H A Ds_ceil.c14 * ceil(x)
19 * Inexact flag raised if x not equal to ceil(x).
30 ceil(double x) function
71 DEF_STD(ceil); variable
72 LDBL_MAYBE_UNUSED_CLONE(ceil); variable
/openbsd-current/gnu/llvm/clang/lib/Headers/hlsl/
H A Dhlsl_intrinsics.h74 // ceil builtins
77 half ceil(half);
79 half2 ceil(half2);
81 half3 ceil(half3);
83 half4 ceil(half4);
87 ceil(float);
89 float2 ceil(float2);
91 float3 ceil(float3);
93 float4 ceil(float4);
96 ceil(doubl
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/c_compatibility/
H A Dmath.h54 using std::ceil;
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c_compatibility/
H A Dmath.h54 using std::ceil;
/openbsd-current/gnu/usr.bin/gcc/gcc/fixinc/tests/base/
H A Dmath.h34 extern double floor(), ceil(), fmod(), fabs _PARAMS((double));
/openbsd-current/gnu/usr.bin/perl/lib/
H A Dbuiltin.t176 # ceil, floor
178 use builtin qw( ceil floor );
180 cmp_ok(ceil(1.5), '==', 2, 'ceil(1.5) == 2');
187 my $_dummy = ceil($tied);
188 is($fetchcount, 1, 'ceil() invokes FETCH magic');
190 $tied = ceil(1.1);
191 is($storecount, 1, 'ceil() TARG invokes STORE magic');
202 is(prototype(\&builtin::ceil), '$', 'ceil prototyp
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/libmath/
H A Dstubs.c126 return (float) ceil(x);
134 return ceil((double) x);
/openbsd-current/gnu/gcc/libstdc++-v3/include/c/
H A Dstd_cmath.h50 #undef ceil macro
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c/
H A Dstd_cmath.h50 #undef ceil macro
/openbsd-current/gnu/llvm/llvm/utils/llvm-locstats/
H A Dllvm-locstats.py13 from math import ceil namespace
53 pc_ranges_covered = int(ceil(self.scope_bytes_covered * 100.0) \
72 int(ceil(self.variables_coverage_map[cov_bucket] * 100.0) \
103 total_availability = int(ceil(self.variables_with_loc * 100.0) \
/openbsd-current/gnu/llvm/llvm/utils/lit/lit/
H A Dutil.py260 power = int(math.ceil(math.log(maxValue, 10)))
263 N = int(math.ceil(maxValue / barH))
282 pDigits = int(math.ceil(math.log(maxValue, 10)))
286 cDigits = int(math.ceil(math.log(len(items), 10)))
/openbsd-current/gnu/llvm/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h47 __DEVICE__ double ceil(double);
48 __DEVICE__ float ceil(float);
209 using ::ceil;
/openbsd-current/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVTargetTransformInfo.cpp388 {Intrinsic::ceil, MVT::v2f32, 9}, member in class:Intrinsic
389 {Intrinsic::ceil, MVT::v4f32, 9}, member in class:Intrinsic
390 {Intrinsic::ceil, MVT::v8f32, 9}, member in class:Intrinsic
391 {Intrinsic::ceil, MVT::v16f32, 9}, member in class:Intrinsic
392 {Intrinsic::ceil, MVT::nxv1f32, 9}, member in class:Intrinsic
393 {Intrinsic::ceil, MVT::nxv2f32, 9}, member in class:Intrinsic
394 {Intrinsic::ceil, MVT::nxv4f32, 9}, member in class:Intrinsic
395 {Intrinsic::ceil, MVT::nxv8f32, 9}, member in class:Intrinsic
396 {Intrinsic::ceil, MVT::nxv16f32, 9}, member in class:Intrinsic
397 {Intrinsic::ceil, MV member in class:Intrinsic
398 {Intrinsic::ceil, MVT::v4f64, 9}, member in class:Intrinsic
399 {Intrinsic::ceil, MVT::v8f64, 9}, member in class:Intrinsic
400 {Intrinsic::ceil, MVT::v16f64, 9}, member in class:Intrinsic
401 {Intrinsic::ceil, MVT::nxv1f64, 9}, member in class:Intrinsic
402 {Intrinsic::ceil, MVT::nxv2f64, 9}, member in class:Intrinsic
403 {Intrinsic::ceil, MVT::nxv4f64, 9}, member in class:Intrinsic
404 {Intrinsic::ceil, MVT::nxv8f64, 9}, member in class:Intrinsic
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c_std/
H A Dstd_cmath.h61 #undef ceil macro
280 using ::ceil;
284 ceil(float __x) { return __gnu_cxx::__c99_binding::ceilf(__x); } function in namespace:std
287 ceil(float __x) { return ::ceil(static_cast<double>(__x)); }
292 ceil(long double __x) { return ::ceill(__x); } function in namespace:std
295 ceil(long double __x) { return ::ceil(static_cast<double>(__x)); } function in namespace:std
300 ceil(_Tp __x) function in namespace:std
301 { return ::ceil(static_cas
[all...]
/openbsd-current/regress/lib/libm/cephes/
H A Dtestvect.c75 double ceil (double);
253 {"ceil", ceil, &NAN, &NAN, 0},
254 {"ceil", ceil, &ZERO, &ZERO, 0},
255 {"ceil", ceil, &MZERO, &MZERO, 0},
256 {"ceil", ceil, &INF, &INF, 0},
257 {"ceil", cei
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/resize_policy/
H A Dcc_hash_max_collision_check_resize_trigger_imp.hpp168 m_max_col = size_type(::ceil(::sqrt(2 * m_load * ::log(ln_arg))));
/openbsd-current/gnu/gcc/libstdc++-v3/include/tr1/
H A Dmath.h49 using std::tr1::ceil;
/openbsd-current/gnu/usr.bin/perl/cpan/Math-BigRat/t/Math/BigRat/
H A DTest.pm44 foreach my $method (qw/div acmp floor ceil root sqrt log fac modpow modinv/) {
/openbsd-current/gnu/gcc/gcc/
H A Dfp-test.c62 extern double ceil (double);
246 d1 = ceil (d2);
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dfp-test.c62 extern double ceil (double);
246 d1 = ceil (d2);
/openbsd-current/gnu/usr.bin/perl/Porting/
H A Dacknowledgements.pl23 use POSIX qw(ceil);
153 return ceil( $int / $divisor ) * $divisor;

Completed in 355 milliseconds

1234