Home
last modified time | relevance | path

Searched refs:y2 (Results 1 – 9 of 9) sorted by relevance

/picolibc-latest/newlib/libm/complex/
Dcephes_subr.c90 double f, x, x2, y, y2, rn, t; in _ctans() local
101 y2 = 1.0; in _ctans()
111 y2 *= y; in _ctans()
112 t = y2 + x2; in _ctans()
121 y2 *= y; in _ctans()
122 t = y2 - x2; in _ctans()
Dcephes_subrf.c90 float f, x, x2, y, y2, rn, t, d; in _ctansf() local
100 y2 = 1.0f; in _ctansf()
110 y2 *= y; in _ctansf()
111 t = y2 + x2; in _ctansf()
120 y2 *= y; in _ctansf()
121 t = y2 - x2; in _ctansf()
Dcephes_subrl.c92 long double f, x, x2, y, y2, rn, t; in _ctansl() local
103 y2 = 1.0L; in _ctansl()
113 y2 *= y; in _ctansl()
114 t = y2 + x2; in _ctansl()
123 y2 *= y; in _ctansl()
124 t = y2 - x2; in _ctansl()
/picolibc-latest/newlib/libm/math/
Dsf_hypot.c21 float a = x, b = y, t1, t2, y1, y2, w; in hypotf() local
80 y2 = b - y1; in hypotf()
83 w = sqrtf(t1 * y1 - (w * (-w) - (t1 * y2 + t2 * b))); in hypotf()
Ds_hypot.c53 __float64 a = x, b = y, t1, t2, y1, y2, w; in hypot64() local
125 y2 = b - y1; in hypot64()
129 w = sqrt64(t1 * y1 - (w * (-w) - (t1 * y2 + t2 * b))); in hypot64()
/picolibc-latest/newlib/libm/ld/ld128/
De_hypotl.c50 long double a,b,t1,t2,yy1,y2,w; in hypotl() local
109 y2 = b - yy1; in hypotl()
113 w = sqrtl(t1*yy1-(w*(-w)-(t1*y2+t2*b))); in hypotl()
/picolibc-latest/newlib/libm/ld/ld80/
De_hypotl.c50 long double a,b,t1,t2,yy1,y2,w; in hypotl() local
111 y2 = b - yy1; in hypotl()
115 w = sqrtl(t1*yy1-(w*(-w)-(t1*y2+t2*b))); in hypotl()
/picolibc-latest/newlib/libm/machine/spu/headers/
Dremquof.h45 vec_uint4 vx, vy, z, y2, y4; in _remquof() local
148 y2 = spu_andc(spu_add(abs_y, implied_1), zero_y); in _remquof()
149 not_ge = spu_cmpgt(y2, abs_x); in _remquof()
151 abs_x = spu_sel((vec_uint4)spu_sub((vec_float4)abs_x, (vec_float4)y2), abs_x, not_ge); in _remquof()
Dremquo.h49 vec_uint4 x_hi, y_hi, y8_hi, y_lo, y2, y4; in _remquo() local
197 y2 = spu_andc(spu_add(abs_y, implied_1), zero_y); in _remquo()
200 gt = spu_cmpgt(y2, abs_x); in _remquo()
201 eq = spu_cmpeq(y2, abs_x); in _remquo()
207 abs_x = spu_sel((vec_uint4)spu_sub((vec_double2)abs_x, (vec_double2)y2), abs_x, not_ge); in _remquo()