Home | History | Annotate | Download | only in ld128

Lines Matching defs:ax

49 	long double ai, ar, ax, hi, lo, s;
51 ax = fabsl(x);
53 if (ax < 1) {
54 if (ax < 0.25) {
55 if (ax < 0x1p-60) {
66 s = __kernel_sinpil(ax);
70 if (ax < 0.5)
71 s = __kernel_cospil(0.5 - ax);
72 else if (ax < 0.75)
73 s = __kernel_cospil(ax - 0.5);
75 s = __kernel_sinpil(1 - ax);
79 if (ax < 0x1p112) {
80 /* Split ax = ai + ar with 0 <= ar < 1. */
81 FFLOORL128(ax, ai, ar);