Lines Matching defs:ax
72 long double ai, ar, ax, hi, lo, t;
75 ax = fabsl(x);
77 if (ax < 1) {
78 if (ax < 0.5) {
79 if (ax < 0x1p-60) {
89 t = __kernel_tanpil(ax);
90 } else if (ax == 0.5)
93 t = -__kernel_tanpil(1 - ax);
97 if (ax < 0x1p112) {
98 /* Split ax = ai + ar with 0 <= ar < 1. */
99 FFLOORL128(ax, ai, ar);
119 t = fmodl(ax,2.L) == 0 ? 0 : copysign(0., -1.);