Home
last modified time | relevance | path

Searched refs:frexp (Results 1 – 5 of 5) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_frexp.c35 frexp(double x, int *eptr) in frexp() function
55 __weak_reference(frexp, frexpl);
Ds_fma.c200 xs = frexp(x, &ex); in fma()
201 ys = frexp(y, &ey); in fma()
202 zs = frexp(z, &ez); in fma()
/bionic/libstdc++/include/
Dcmath58 using ::frexp;
/bionic/libm/include/
Dmath.h205 double frexp(double, int *); /* fundamentally !__pure2 */
/bionic/tests/
Dmath_test.cpp1269 TEST(math, frexp) { in TEST() argument
1271 double dr = frexp(1024.0, &exp); in TEST()