/picolibc-latest/newlib/libm/complex/ |
D | cephes_subr.c | 90 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()
|
D | cephes_subrf.c | 90 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()
|
D | cephes_subrl.c | 92 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/ |
D | sf_hypot.c | 21 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()
|
D | s_hypot.c | 53 __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/ |
D | e_hypotl.c | 50 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/ |
D | e_hypotl.c | 50 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/ |
D | remquof.h | 45 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()
|
D | remquo.h | 49 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()
|