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

1234

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dfold-convround-1.c7 extern double ceil(double);
20 return (unsigned long long) ceil(x);
H A Dbuiltins-26.c15 extern double ceil(double);
31 if (trunc (ceil (x)) != ceil (x))
38 if (floor (ceil (x)) != ceil (x))
41 if (ceil (trunc (x)) != trunc (x))
43 if (ceil (floor (x)) != floor (x))
45 if (ceil (ceil (x)) != ceil (
[all...]
H A Dbuiltins-67.c15 double ceil (double);
45 int iceil (double a) { return (int) ceil (a); }
51 long lceil (double a) { return (long) ceil (a); }
57 long long llceil (double a) { return (long long) ceil (a); }
H A Dbuiltins-53.c5 (long)ceil, (long)ceilf, (long)ceill,
6 (long long)ceil, (long long)ceilf, (long long)ceill
18 extern double ceil(double);
42 return ceil(x);
47 return ceil(x);
H A Dpr42250.c5 extern double ceil (double __x);
59 nlevels = ceil (log10 (num_inputs) / log10 (2.) - 0.00001);
64 current_inps = ceil (current_inps / 2.);
H A Dbuiltins-46.c5 ceil, ceilf, ceill, trunc, truncf, truncl,
18 extern double ceil(double);
61 return ceil(x);
/haiku-buildtools/gcc/gmp/tests/mpf/
H A Dt-trunc.c43 check_one (mpf_srcptr src, mpf_srcptr trunc, mpf_srcptr ceil, mpf_srcptr floor) argument
49 ASSERT_ALWAYS (PREC(got) == PREC(ceil));
64 CHECK_SEP ("mpf_ceil", mpf_ceil, ceil);
84 CHECK_INPLACE ("mpf_ceil", mpf_ceil, ceil);
92 check_all (mpf_ptr src, mpf_ptr trunc, mpf_ptr ceil, mpf_ptr floor) argument
97 MPF_CHECK_FORMAT (ceil);
100 check_one (src, trunc, ceil, floor);
104 mpf_neg (ceil, ceil);
106 check_one (src, trunc, floor, ceil);
112 mpf_t src, trunc, ceil, floor; local
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/
H A Dbuiltin-rounding-1.c22 TEST(ceil, 0, 0);
33 TEST(ceil, 6, 6);
44 TEST(ceil, -8, -8);
55 TEST(ceil, 3.2, 4);
66 TEST(ceil, -2.8, -2);
77 TEST(ceil, 0.01, 1);
88 TEST(ceil, -0.7, 0);
99 TEST(ceil, 2.5, 3);
110 TEST(ceil, -1.5, -1);
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Davx-ceil-sfix-2-vec.c18 extern double ceil (double);
56 r[i] = (int) ceil (a[i]);
60 if (r[i] != (int) ceil (a[i]))
H A Dsse4_1-ceil-sfix-vec.c18 extern double ceil (double);
56 r[i] = (int) ceil (a[i]);
60 if (r[i] != (int) ceil (a[i]))
H A Dsse4_1-ceil-vec.c18 extern double ceil (double);
56 r[i] = ceil (a[i]);
60 if (r[i] != ceil (a[i]))
H A Davx512f-ceil-sfix-vec-1.c9 extern double ceil (double);
47 r[i] = (int) ceil (a[i]);
51 if (r[i] != (int) ceil (a[i]))
H A Davx512f-vrndscalesd-2.c23 r[0] = ceil (s2[0] * pow (2, m)) / pow (2, m);
/haiku-buildtools/binutils/gas/testsuite/gas/tic54x/
H A Dmath.s8 .float $ceil(1.5)
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/tic54x/
H A Dmath.s8 .float $ceil(1.5)
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/aarch64/
H A Dfcvt.x2 extern GPF SUFFIX(ceil) (GPF);
22 return SUFFIX(ceil)(x);
H A Dfrint.x2 extern GPF SUFFIX(ceil) (GPF);
25 return SUFFIX(ceil)(x);
H A Dvect-vrnd.c14 extern double ceil (double);
89 BUILD_VARIANTS (p, ceil)
112 BUILD_VARIANTS (p, ceil)
/haiku-buildtools/gcc/libgcc/config/arc/
H A Ddivtab-arc700.c60 r = ceil (q);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/26_numerics/headers/cmath/
H A Dfunctions_std.cc28 using std::ceil;
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/s390/
H A Dnearestint-1.c8 extern double ceil (double x);
24 double my_ceil (double x) { return ceil (x); }
/haiku-buildtools/gcc/gmp/demos/perl/GMP/
H A DMpf.pm29 ceil floor get_default_prec get_prec mpf mpf_eq
/haiku-buildtools/gcc/gcc/config/sh/
H A Ddivtab-sh4.c69 r = ceil (q);
H A Ddivtab-sh4-300.c66 r = ceil (q);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/vect/
H A Dfast-math-bb-slp-call-3.c50 uf->rotatedWidth = MIN(ceil(2 * maxX + 1.0) * scale, 2 * iWidth);
51 uf->rotatedHeight = MIN(ceil(2 * maxY + 1.0) * scale, 2 * iHeight);

Completed in 216 milliseconds

1234