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

  /src/lib/libm/noieee_src/
n_lroundf.c 43 t = ceilf(x);
48 t = ceilf(-x);
n_roundf.c 43 t = ceilf(x);
48 t = ceilf(-x);
n_floor.c 107 ceilf(float x) function in typeref:typename:float
238 return x < 0 ? ceilf(x) : floorf(x);
  /src/lib/libm/src/
s_ceilf.c 27 ceilf(float x) function in typeref:typename:float
  /src/lib/libm/arch/i387/
s_ceilf.S 10 ENTRY(ceilf) function
  /src/tests/lib/libm/
t_ceil.c 137 * ceilf(3)
142 atf_tc_set_md_var(tc, "descr", "A basic test of ceilf(3)");
150 ATF_CHECK(fabsf(ceilf(x) - 1) < SMALL_NUM);
151 ATF_CHECK(fabsf(ceilf(y) - 1) < SMALL_NUM);
157 atf_tc_set_md_var(tc, "descr", "Test ceilf(NaN) == NaN");
164 ATF_CHECK(isnan(ceilf(x)) != 0);
170 atf_tc_set_md_var(tc, "descr", "Test ceilf(-Inf) == -Inf");
176 float y = ceilf(x);
179 atf_tc_fail_nonfatal("ceilf(-Inf) != -Inf");
185 atf_tc_set_md_var(tc, "descr", "Test ceilf(+Inf) == +Inf")
    [all...]
  /src/include/
math.h 424 float ceilf(float);
  /src/lib/libm/
Makefile 476 MLINKS+=ceil.3 ceilf.3 \

Completed in 15 milliseconds