Home
last modified time | relevance | path

Searched refs:ax (Results 1 – 25 of 54) sorted by relevance

123

/sysdeps/ieee754/ldbl-96/
A De_hypotl.c43 kernel (long double ax, long double ay) in kernel() argument
46 long double h = sqrtl (ax * ax + ay * ay); in kernel()
50 t1 = ax * (2.0L * delta - ax); in kernel()
55 long double delta = h - ax; in kernel()
78 long double ax = x < y ? y : x; in __ieee754_hypotl() local
85 return ax + ay; in __ieee754_hypotl()
94 return ax + ay; in __ieee754_hypotl()
96 ax = kernel (ax / SCALE, ay / SCALE) * SCALE; in __ieee754_hypotl()
98 return ax; in __ieee754_hypotl()
103 return ax + ay; in __ieee754_hypotl()
[all …]
/sysdeps/ieee754/dbl-64/
A De_hypot.c64 kernel (double ax, double ay) in kernel() argument
69 t2 = ax - ay; in kernel()
71 if (t1 >= ax) in kernel()
74 return sqrt (fma (ax, ax, ay * ay)); in kernel()
77 double h = sqrt (ax * ax + ay * ay); in kernel()
81 t1 = ax * (2.0 * delta - ax); in kernel()
86 double delta = h - ax; in kernel()
129 ax = math_narrow_eval (kernel (ax / SCALE, ay / SCALE) * SCALE); in __hypot()
131 return ax; in __hypot()
136 return ax + ay; in __hypot()
[all …]
A De_atan2.c180 ax = (x < 0) ? -x : x; in __ieee754_atan2()
192 z = ay / ax; in __ieee754_atan2()
211 ax *= two500.d; in __ieee754_atan2()
218 ax *= twom500.d; in __ieee754_atan2()
223 if (ay < ax) in __ieee754_atan2()
225 u = ay / ax; in __ieee754_atan2()
226 EMULV (ax, u, v, vv); in __ieee754_atan2()
227 du = ((ay - v) - vv) / ax; in __ieee754_atan2()
231 u = ax / ay; in __ieee754_atan2()
239 if (ay < ax) in __ieee754_atan2()
[all …]
A Ds_log1p.c106 int32_t k, hx, hu, ax; in __log1p() local
109 ax = hx & 0x7fffffff; in __log1p()
114 if (__glibc_unlikely (ax >= 0x3ff00000)) /* x <= -1.0 */ in __log1p()
121 if (__glibc_unlikely (ax < 0x3e200000)) /* |x| < 2**-29 */ in __log1p()
124 if (ax < 0x3c900000) /* |x| < 2**-54 */ in __log1p()
/sysdeps/ieee754/ldbl-128/
A De_hypotl.c43 kernel (_Float128 ax, _Float128 ay) in kernel() argument
46 _Float128 h = sqrtl (ax * ax + ay * ay); in kernel()
50 t1 = ax * (L(2.0) * delta - ax); in kernel()
55 _Float128 delta = h - ax; in kernel()
78 _Float128 ax = x < y ? y : x; in __ieee754_hypotl() local
85 return ax + ay; in __ieee754_hypotl()
94 return ax + ay; in __ieee754_hypotl()
96 ax = kernel (ax / SCALE, ay / SCALE) * SCALE; in __ieee754_hypotl()
98 return ax; in __ieee754_hypotl()
103 return ax + ay; in __ieee754_hypotl()
[all …]
A De_powl.c152 _Float128 z, ax, z_h, z_l, p_h, p_l; in __ieee754_powl() local
242 ax = fabsl (x); in __ieee754_powl()
248 z = ax; /*x is +-0,+-inf,+-1 */ in __ieee754_powl()
301 ax *= two113; in __ieee754_powl()
303 o.value = ax; in __ieee754_powl()
321 o.value = ax; in __ieee754_powl()
323 ax = o.value; in __ieee754_powl()
326 u = ax - bp[k]; /* bp[0]=1.0, bp[1]=1.5 */ in __ieee754_powl()
327 v = one / (ax + bp[k]); in __ieee754_powl()
336 t_h = ax + bp[k]; in __ieee754_powl()
[all …]
/sysdeps/powerpc/powerpc64/fpu/
A Ds_llround.c55 double ax = fabs (x); in __llround()
57 if (ax < 0.5) in __llround()
60 if (ax < 0x1p+52) in __llround()
63 double t = ax + 0x1p+52; in __llround()
65 if (ax != t) in __llround()
67 ax = ax + 0.5; in __llround()
69 ax = -fabs (ax); in __llround()
70 x = ax; in __llround()
A Ds_llroundf.c55 float ax = fabsf (x); in __llroundf()
57 if (ax < 0.5f) in __llroundf()
60 if (ax < 0x1p+23f) in __llroundf()
63 float t = ax + 0x1p+23f; in __llroundf()
65 if (ax != t) in __llroundf()
67 ax = ax + 0.5f; in __llroundf()
69 ax = -fabs (ax); in __llroundf()
70 x = ax; in __llroundf()
/sysdeps/powerpc/powerpc32/fpu/
A Ds_lround.c45 double ax = fabs (x); in __lround()
47 if (ax < 0.5) in __lround()
55 double t = ax + 0x1p+52; in __lround()
57 if (ax != t) in __lround()
59 ax = ax + 0.5; in __lround()
61 ax = -fabs (ax); in __lround()
62 x = ax; in __lround()
A Ds_llround.c60 double ax = fabs (x); in __llround()
62 if (ax < 0.5) in __llround()
65 if (ax < 0x1p+52) in __llround()
68 double t = ax + 0x1p+52; in __llround()
70 if (ax != t) in __llround()
72 ax = ax + 0.5; in __llround()
74 ax = -fabs (ax); in __llround()
75 x = ax; in __llround()
A Ds_llroundf.c37 float ax = fabsf (x); in __llroundf() local
40 if (ax < 0x1p31f) in __llroundf()
42 else if (!(ax < 0x1p55f)) in __llroundf()
/sysdeps/m68k/m680x0/fpu/
A De_pow.c38 float_type ax; in s() local
53 ax = s(fabs) (x); in s()
54 if (ax == 1.0) in s()
55 return ax; in s()
56 if (ax > 1.0) in s()
81 ax = s(fabs) (x); in s()
82 if (x_cond & (__M81_COND_INF | __M81_COND_ZERO) || ax == 1.0) in s()
84 z = ax; in s()
/sysdeps/x86_64/multiarch/
A Dmemcmp-sse4.S232 incw %ax
239 incw %ax
248 incw %ax
257 incw %ax
264 incw %ax
274 incw %ax
281 incw %ax
292 incw %ax
314 incw %ax
320 incw %ax
[all …]
/sysdeps/powerpc/fpu/
A Dt_sqrt.c133 double ax = (lx+hx)*0.5;
135 printf("%.4f,%.4f%s",as,ax,
138 assert((hx-lx)/ax < 1/256.0);
/sysdeps/ieee754/flt-32/
A Ds_log1pf.c40 int32_t k,hx,hu,ax; in __log1pf() local
43 ax = hx&0x7fffffff; in __log1pf()
47 if(ax>=0x3f800000) { /* x <= -1.0 */ in __log1pf()
51 if(ax<0x31000000) { /* |x| < 2**-29 */ in __log1pf()
53 if (ax<0x24800000) /* |x| < 2**-54 */ in __log1pf()
/sysdeps/ieee754/ldbl-128ibm/
A De_powl.c152 long double z, ax, z_h, z_l, p_h, p_l; in __ieee754_powl() local
210 ax = fabsl (x); in __ieee754_powl()
217 if (ax > one) in __ieee754_powl()
248 z = ax; /*x is +-0,+-inf,+-1 */ in __ieee754_powl()
301 ax *= two113; in __ieee754_powl()
303 ohi = ldbl_high (ax); in __ieee754_powl()
321 ohi = ldbl_high (ax); in __ieee754_powl()
323 ax = __scalbnl (ax, ((int) ((ix - hax) * 2)) >> 21); in __ieee754_powl()
327 v = one / (ax + bp[k]); in __ieee754_powl()
332 t_h = ax + bp[k]; in __ieee754_powl()
[all …]
A Dmath_ldbl.h261 uint64_t ax, aax; in ldbl_canonicalize_int() local
264 ax = extractor.word; in ldbl_canonicalize_int()
268 int expdiff = ((ax >> 52) & 0x7ff) - ((aax >> 52) & 0x7ff); in ldbl_canonicalize_int()
275 if ((ax & 1) != 0) in ldbl_canonicalize_int()
/sysdeps/i386/
A Dhtons.S31 rorw $8, %ax
/sysdeps/i386/fpu/
A De_fmod.S12 fstsw %ax
A De_fmodf.S12 fstsw %ax
A De_remainder.S12 fstsw %ax
A De_remainderf.S12 fstsw %ax
A De_remainderl.S13 fstsw %ax
/sysdeps/x86_64/fpu/
A De_remainderl.S13 fstsw %ax
A De_fmodl.S15 fstsw %ax

Completed in 25 milliseconds

123