HomeSort by: relevance | last modified time | path
    Searched refs:ceil (Results 1 - 22 of 22) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dml/
amdgpu_dml_common_defs.c 39 double ceil = dml_ceil(a, 1); local in function:dml_round
43 return ceil;
  /src/lib/libm/noieee_src/
n_lround.c 43 t = ceil(x);
48 t = ceil(-x);
n_round.c 47 t = ceil(x);
52 t = ceil(-x);
n_floor.c 48 __weak_alias(ceill, ceil)
55 * ceil(x) := -floor(-x), for all real x.
72 return -ceil(-x);
87 ceil(double x) function in typeref:typename:double
109 return ceil((double)x);
232 return x < 0 ? ceil(x) : floor(x);
n_gamma.c 304 y = .5*ceil(x);
305 if (y == ceil(y))
n_lgamma.c 306 y = .5*ceil(x);
307 if (y == ceil(y))
  /src/lib/libm/arch/m68k/
s_ceil.S 43 | ceil(x)
44 ENTRY(ceil) function
  /src/sys/arch/ia64/ia64/
sal.c 73 setup_ipi_vectors(int ceil)
77 ipi_vector[IPI_MCA_RENDEZ] = ceil - 0x10;
78 ipi_vector[IPI_MCA_CMCV] = ceil - 0x30;
79 ipi_vector[IPI_TEST] = ceil - 0x30 + 1;
82 ceil -= 0x20; /* First vector in group. */
84 ipi_vector[ipi++] = ceil++;
  /src/lib/libm/src/
s_ceil.c 19 * ceil(x)
24 * Inexact flag raised if x not equal to ceil(x).
33 __strong_alias(_ceill, ceil)
34 __weak_alias(ceill, ceil)
38 ceil(double x)
b_tgamma.c 282 y = ceil(x);
289 if (y == ceil(y))
  /src/lib/libm/arch/i387/
s_ceil.S 12 ENTRY(ceil) function
  /src/lib/libpthread/
pthread_mutex.c 127 uintptr_t type, proto, val, ceil; local in function:__weak_alias
144 ceil = 0;
150 ceil = MUTEX_GET_CEILING(val);
177 ptm->ptm_ceiling = (unsigned char)ceil;
639 pthread_mutexattr_getprioceiling(const pthread_mutexattr_t *attr, int *ceil)
645 *ceil = MUTEX_GET_CEILING(attr->ptma_private);
650 pthread_mutexattr_setprioceiling(pthread_mutexattr_t *attr, int ceil)
656 if (ceil & ~0xff)
659 MUTEX_SET_CEILING(attr->ptma_private, ceil);
736 pthread_mutex_getprioceiling(const pthread_mutex_t *ptm, int *ceil)
    [all...]
  /src/tests/lib/lua/libm/
h_lualibm.c 38 TEST(ceil(M_PI));
39 TEST(ceil(M_E));
lualibm.lua 44 test("ceil(M_PI)", lm.ceil(lm.M_PI))
45 test("ceil(M_E)", lm.ceil(lm.M_E))
  /src/tests/lib/libm/
t_ceil.c 46 * 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(+Inf) == +Inf")
    [all...]
  /src/lib/libm/
Makefile 447 ceil.3 copysign.3 cos.3 cosh.3 \
476 MLINKS+=ceil.3 ceilf.3 \
477 ceil.3 ceill.3 \
478 ceil.3 floor.3 \
479 ceil.3 floorf.3 \
480 ceil.3 floorl.3
  /src/include/
tgmath.h 151 #define ceil(a) __TG_FN1(ceil, (a)) macro
math.h 262 double ceil(double);
  /src/lib/lua/libm/
libm.c 115 DFUNC_DBL(ceil)
251 { "ceil", libm_ceil },
  /src/usr.bin/xlint/llib/
llib-lstdc 114 double (ceil)(double x);
llib-lposix 83 double (ceil)(double x);
  /src/usr.sbin/makefs/
udf.c 1100 nbytes = ceil((double) nblk * (1.0/8.0));
1103 nbytes = ceil((double) nmetablk * (1.0/8.0));
1110 nbytes = ceil((double) nblk * (1.0/8.0));
1243 (int) ceil(100.0*stats.nmetadatablocks/stats.ndatablocks));

Completed in 24 milliseconds