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

  /src/tests/lib/libm/
t_pow.c 306 * powf(3)
311 atf_tc_set_md_var(tc, "descr", "Test powf(NaN, y) == NaN");
317 const float z = powf(x, 2.0f);
325 atf_tc_set_md_var(tc, "descr", "Test powf(x, NaN) == NaN");
331 const float z = powf(2.0f, y);
339 atf_tc_set_md_var(tc, "descr", "Test powf(-Inf, y) == +-Inf || +-0.0");
351 z = powf(x, 3.0);
352 ATF_CHECK_MSG(isinf(z), "x=%a z=%s=%a", x, "powf(x, 3.0)", z);
353 ATF_CHECK_MSG(signbit(z) != 0, "x=%a z=%s=%a", x, "powf(x, 3.0)", z);
355 z = powf(x, 4.0)
    [all...]
t_sqrt.c 166 atf_tc_set_md_var(tc, "descr", "Test sqrtf(3) vs. powf(3)");
177 float x_pow12 = powf(x[i], 1.0 / 2.0);
188 "powf(%.8g, 1/2) = %.8g\n",
t_cbrt.c 168 atf_tc_set_md_var(tc, "descr", "Test cbrtf(3) vs. powf(3)");
180 float x_pow13 = powf(x[i], 1.0 / 3.0);
191 "powf(%.9g, 1/3) = %.9g\n",
  /src/lib/libm/complex/
cpowf.c 49 r = powf(absa, x);
  /src/lib/libm/src/
w_powf.c 22 * wrapper powf(x,y) return x**y
30 powf(float x, float y) /* wrapper powf */ function in typeref:typename:float
40 /* powf(NaN,0.0) */
47 /* powf(0.0,0.0) */
50 /* powf(0.0,negative) */
57 /* powf neg**non-int */
60 /* powf overflow */
65 /* powf underflow */
  /src/lib/libm/noieee_src/
n_pow.c 126 __weak_alias(_powf, powf);
133 powf(float x, float y) function in typeref:typename:float
  /src/games/testpat/
testpat.c 134 circle_int = 1 - powf(circle_int, 2);
135 circle_int = circle_int * powf(b_axis, 2);
138 circle_int = powf(a_axis, 2) - powf(i - a_axis, 2);
  /src/include/
math.h 392 float powf(float, float);
  /src/lib/libm/
Makefile 506 MLINKS+=pow.3 powf.3

Completed in 29 milliseconds