Home
last modified time | relevance | path

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

/freebsd/sys/dev/syscons/plasma/
H A Dfp16.c44 signed int log2x; in fp16_sqrt() local
51 log2x = flsl(x) - 1; in fp16_sqrt()
52 if (log2x >= 16) { in fp16_sqrt()
53 y = x >> (log2x - 16) / 2; in fp16_sqrt()
56 y = x << (16 - log2x) / 2; in fp16_sqrt()
/freebsd/lib/msun/tests/
H A Dlogarithm_test.c189 long double log2x; in ATF_TC_BODY() member
229 test_tol(log2, tests[i].x, tests[i].log2x, DBL_ULP()); in ATF_TC_BODY()
230 test_tol(log2f, tests[i].x, tests[i].log2x, FLT_ULP()); in ATF_TC_BODY()
231 test_tol(log2l, tests[i].x, tests[i].log2x, LDBL_ULP()); in ATF_TC_BODY()