Home
last modified time | relevance | path

Searched refs:n2 (Results 1 – 2 of 2) sorted by relevance

/picolibc-latest/newlib/libm/test/
Dmath2.c214 double n2; in test_pow() local
220 n2 = fabs(randy()/100.0); in test_pow()
221 res = pow(n1, n2); in test_pow()
222 shouldbe = exp(log(n1) * n2); in test_pow()
231 float n2; in test_pow() local
239 n2 = fabs(randy()/100.0); in test_pow()
240 res = powf(n1, n2); in test_pow()
241 shouldbe = expf(logf(n1) * n2); in test_pow()
/picolibc-latest/test/
Drounding-mode.c143 #define n2 nextafter(2.0, 3.0) macro
316 check_sqrt(FE_TONEAREST, nn4, n2); in main()
318 check_sqrt(FE_UPWARD, n4, n2); in main()
319 check_sqrt(FE_UPWARD, nn4, n2); in main()