Searched refs:ay2l (Results 1 – 3 of 3) sorted by relevance
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_clogf.c | 48 float_t ax, ax2h, ax2l, axh, axl, ay, ay2h, ay2l, ayh, ayl, sh, sl, t; in clogf() local 111 ay2l = ayh * ayh - ay2h + 2 * ayh * ayl + ayl * ayl; in clogf() 141 return (CMPLXF(logf(ay2l + ax2l + sl + sh) / 2, v)); in clogf() 144 _2sum(ax2l, ay2l); in clogf() 147 _2sum(sl, ay2l); in clogf() 150 return (CMPLXF(log1pf(ay2l + t + sh) / 2, v)); in clogf()
|
D | s_clog.c | 48 double_t ax, ax2h, ax2l, axh, axl, ay, ay2h, ay2l, ayh, ayl, sh, sl, t; in clog() local 111 ay2l = ayh * ayh - ay2h + 2 * ayh * ayl + ayl * ayl; in clog() 141 return (CMPLX(log(ay2l + ax2l + sl + sh) / 2, v)); in clog() 144 _2sum(ax2l, ay2l); in clog() 147 _2sum(sl, ay2l); in clog() 150 return (CMPLX(log1p(ay2l + t + sh) / 2, v)); in clog()
|
D | s_clogl.c | 62 long double ax, ax2h, ax2l, axh, axl, ay, ay2h, ay2l, ayh, ayl; in clogl() local 128 ay2l = ayh * ayh - ay2h + 2 * ayh * ayl + ayl * ayl; in clogl() 158 RETURNI(CMPLXL(logl(ay2l + ax2l + sl + sh) / 2, v)); in clogl() 161 _2sum(ax2l, ay2l); in clogl() 164 _2sum(sl, ay2l); in clogl() 167 RETURNI(CMPLXL(log1pl(ay2l + t + sh) / 2, v)); in clogl()
|