Home
last modified time | relevance | path

Searched refs:xx (Results 1 – 15 of 15) sorted by relevance

/sysdeps/ieee754/dbl-64/
A De_asin.c77 p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+xx*(asncs.x[n+5] in __ieee754_asin()
91 p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+xx*(asncs.x[n+5] in __ieee754_asin()
105 p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+xx*(asncs.x[n+5] in __ieee754_asin()
119 p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+ in __ieee754_asin()
136 p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+ in __ieee754_asin()
220 p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+ in libm_alias_finite()
237 p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+ in libm_alias_finite()
255 p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+ in libm_alias_finite()
273 p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+ in libm_alias_finite()
292 p=xx*xx*(asncs.x[n+2]+xx*(asncs.x[n+3]+xx*(asncs.x[n+4]+ in libm_alias_finite()
[all …]
A Ds_sin.c49 #define POLYNOMIAL2(xx) ((((s5 * (xx) + s4) * (xx) + s3) * (xx) + s2) * (xx)) argument
51 #define POLYNOMIAL(xx) (POLYNOMIAL2 (xx) + s1) argument
60 #define TAYLOR_SIN(xx, x, dx) \ argument
62 double t = ((POLYNOMIAL (xx) * (x) - 0.5 * (dx)) * (xx) + (dx)); \
110 double xx, s, sn, ssn, c, cs, ccs, cor; in do_cos() local
111 xx = x * x; in do_cos()
112 s = x + x * xx * (sn3 + xx * sn5); in do_cos()
113 c = xx * (cs2 + xx * (cs4 + xx * cs6)); in do_cos()
139 xx = x * x; in do_sin()
140 s = x + (dx + x * xx * (sn3 + xx * sn5)); in do_sin()
[all …]
A Ddla.h105 #define ADD2(x, xx, y, yy, z, zz, r, s) \ argument
107 (((((x) - r) + (y)) + (yy)) + (xx)) : \
108 (((((y) - r) + (x)) + (xx)) + (yy)); \
118 #define SUB2(x, xx, y, yy, z, zz, r, s) \ argument
120 (((((x) - r) - (y)) - (yy)) + (xx)) : \
121 ((((x) - ((y) + r)) + (xx)) - (yy)); \
131 #define MUL2(x, xx, y, yy, z, zz, c, cc) \ argument
142 #define DIV2(x, xx, y, yy, z, zz, c, cc, u, uu) \ argument
144 cc=(((((x)-u)-uu)+(xx))-c*(yy))/(y); z=c+cc; zz=(c-z)+cc;
161 ss = (fabs (xx) > fabs (yy)) ? (((xx) - s) + (yy)) : (((yy) - s) + (xx));\
[all …]
A Ds_sincos.c72 double a, da, xx; in __sincos() local
93 xx = do_cos (a, da); in __sincos()
94 *cosx = (n & 2) ? -xx : xx; in __sincos()
A De_remainder.c47 double z, d, xx; in __ieee754_remainder() local
66 xx = (x - d * v.x) - d * (t.x - v.x); in __ieee754_remainder()
68 return (xx != 0) ? xx : ((x > 0) ? ZERO.x : nZERO.x); in __ieee754_remainder()
71 if (fabs (xx) > 0.5 * t.x) in __ieee754_remainder()
72 return (z > d) ? xx - t.x : xx + t.x; in __ieee754_remainder()
74 return xx; in __ieee754_remainder()
/sysdeps/ieee754/ldbl-128ibm/
A De_j1l.c625 xx = fabsl (x); in __ieee754_j1l()
634 if (xx <= 2) in __ieee754_j1l()
637 z = xx * xx; in __ieee754_j1l()
656 z = __cosl (xx + xx); in __ieee754_j1l()
663 if (xx > 0x1p256L) in __ieee754_j1l()
671 xinv = 1 / xx; in __ieee754_j1l()
783 xx = fabsl (x); in __ieee754_y1l()
791 if (xx <= 2) in __ieee754_y1l()
795 z = xx * xx; in __ieee754_y1l()
813 z = __cosl (xx + xx); in __ieee754_y1l()
[all …]
A De_j0l.c621 xx = fabsl (x); in __ieee754_j0l()
622 if (xx <= 2) in __ieee754_j0l()
627 z = xx * xx; in __ieee754_j0l()
646 z = -__cosl (xx + xx); in __ieee754_j0l()
653 if (xx > 0x1p256L) in __ieee754_j0l()
656 xinv = 1 / xx; in __ieee754_j0l()
767 xx = fabsl (x); in __ieee754_y0l()
768 if (xx <= 0x1p-57) in __ieee754_y0l()
770 if (xx <= 2) in __ieee754_y0l()
773 z = xx * xx; in __ieee754_y0l()
[all …]
A Ds_expm1l.c92 long double px, qx, xx; in __expm1l() local
122 xx = C1 + C2; /* ln 2. */ in __expm1l()
123 px = floorl (0.5 + x / xx); in __expm1l()
138 xx = x * x; in __expm1l()
139 qx = x + (0.5 * xx + xx * px / qx); in __expm1l()
/sysdeps/ieee754/ldbl-128/
A De_j1l.c702 xx = fabsl (x); in __ieee754_j1l()
711 if (xx <= 2) in __ieee754_j1l()
714 z = xx * xx; in __ieee754_j1l()
733 z = __cosl (xx + xx); in __ieee754_j1l()
748 xinv = 1 / xx; in __ieee754_j1l()
860 xx = fabsl (x); in __ieee754_y1l()
861 if (xx <= 0x1p-114) in __ieee754_y1l()
868 if (xx <= 2) in __ieee754_y1l()
872 z = xx * xx; in __ieee754_y1l()
890 z = __cosl (xx + xx); in __ieee754_y1l()
[all …]
A Ds_expm1l.c96 _Float128 px, qx, xx; in __expm1l() local
138 xx = C1 + C2; /* ln 2. */ in __expm1l()
139 px = floorl (0.5 + x / xx); in __expm1l()
154 xx = x * x; in __expm1l()
155 qx = x + (0.5 * xx + xx * px / qx); in __expm1l()
A De_j0l.c694 xx = fabsl (x); in __ieee754_j0l()
695 if (xx <= 2) in __ieee754_j0l()
700 z = xx * xx; in __ieee754_j0l()
719 z = -__cosl (xx + xx); in __ieee754_j0l()
726 if (xx > L(0x1p256)) in __ieee754_j0l()
729 xinv = 1 / xx; in __ieee754_j0l()
840 xx = fabsl (x); in __ieee754_y0l()
841 if (xx <= 0x1p-57) in __ieee754_y0l()
843 if (xx <= 2) in __ieee754_y0l()
846 z = xx * xx; in __ieee754_y0l()
[all …]
/sysdeps/mips/
A DMakefile31 ifneq (,$(filter $(o32-fpabi),32 xx xxo))
35 ifneq (,$(filter $(o32-fpabi),xx))
39 ifneq (,$(filter $(o32-fpabi),xx xxo))
45 ifneq (,$(filter $(o32-fpabi),xx 64a))
51 ifneq (,$(filter $(o32-fpabi),xx xxo 64a 64))
72 ifeq ($(o32-fpabi),xx)
/sysdeps/powerpc/
A Dtest-arith.c186 union_t xx; in delta() local
189 xx.tc = x; in delta()
190 if (xx.c[0] & 0x80) in delta()
195 tx.tc = pattern(xx.c[0] >> 7, P_O, P_Z); in delta()
201 xx.c[i] += direction; in delta()
202 if (xx.c[i] != (direction > 0 ? 0 : 0xff)) in delta()
203 return xx.tc; in delta()
205 if (direction < 0 && (xx.c[0] & 0x7f) == 0) in delta()
209 xx.c[0] += direction; in delta()
210 return xx.tc; in delta()
[all …]
/sysdeps/unix/sysv/linux/mips/
A Dconfigure.ac68 [libc_mips_o32_fp=xx],
A Dconfigure160 libc_mips_o32_fp=xx

Completed in 30 milliseconds