Home
last modified time | relevance | path

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

12

/bionic/libm/upstream-freebsd/lib/msun/src/
Dcatrigl.c169 long double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhl() local
175 ax = fabsl(x); in casinhl()
188 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in casinhl()
202 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in casinhl()
205 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinhl()
225 long double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacosl() local
234 ax = fabsl(x); in cacosl()
247 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in cacosl()
261 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in cacosl()
264 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x); in cacosl()
[all …]
Dcatrigf.c150 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhf() local
156 ax = fabsf(x); in casinhf()
169 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in casinhf()
183 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in casinhf()
186 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinhf()
205 float x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacosf() local
214 ax = fabsf(x); in cacosf()
227 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in cacosf()
241 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in cacosf()
244 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x); in cacosf()
[all …]
Dcatrig.c279 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinh() local
285 ax = fabs(x); in casinh()
306 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in casinh()
322 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in casinh()
325 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinh()
360 double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacos() local
369 ax = fabs(x); in cacos()
390 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in cacos()
407 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in cacos()
410 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x); in cacos()
[all …]
Ds_clog.c48 double_t ax, ax2h, ax2l, axh, axl, ay, ay2h, ay2l, ayh, ayl, sh, sl, t; in clog() local
57 ax = fabs(x); in clog()
59 if (ax < ay) { in clog()
60 t = ax; in clog()
61 ax = ay; in clog()
65 GET_HIGH_WORD(hax, ax); in clog()
75 if (ax == 1) { in clog()
83 return (CMPLX(log(ax), v)); in clog()
102 t = (double)(ax * (0x1p27 + 1)); in clog()
103 axh = (double)(ax - t) + t; in clog()
[all …]
Ds_clogl.c62 long double ax, ax2h, ax2l, axh, axl, ay, ay2h, ay2l, ayh, ayl; in clogl() local
74 ax = fabsl(x); in clogl()
76 if (ax < ay) { in clogl()
77 t = ax; in clogl()
78 ax = ay; in clogl()
82 GET_LDBL_EXPSIGN(hax, ax); in clogl()
92 if (ax == 1) { in clogl()
100 RETURNI(CMPLXL(logl(ax), v)); in clogl()
119 t = (long double)(ax * (MULT_REDUX + 1)); in clogl()
120 axh = (long double)(ax - t) + t; in clogl()
[all …]
Ds_clogf.c48 float_t ax, ax2h, ax2l, axh, axl, ay, ay2h, ay2l, ayh, ayl, sh, sl, t; in clogf() local
57 ax = fabsf(x); in clogf()
59 if (ax < ay) { in clogf()
60 t = ax; in clogf()
61 ax = ay; in clogf()
65 GET_FLOAT_WORD(hax, ax); in clogf()
83 return (CMPLXF(logf(ax), v)); in clogf()
102 t = (float)(ax * (0x1p12F + 1)); in clogf()
103 axh = (float)(ax - t) + t; in clogf()
104 axl = ax - axh; in clogf()
[all …]
Ds_log1pf.c43 int32_t k,hx,hu,ax; in log1pf() local
46 ax = hx&0x7fffffff; in log1pf()
50 if(ax>=0x3f800000) { /* x <= -1.0 */ in log1pf()
54 if(ax<0x38000000) { /* |x| < 2**-15 */ in log1pf()
56 &&ax<0x33800000) /* |x| < 2**-24 */ in log1pf()
De_powf.c61 float z,ax,z_h,z_l,p_h,p_l; in __ieee754_powf() local
114 ax = fabsf(x); in __ieee754_powf()
117 z = ax; /*x is +-0,+-inf,+-1*/ in __ieee754_powf()
143 t = ax-1; /* t has 20 trailing zeros */ in __ieee754_powf()
156 {ax *= two24; n -= 24; GET_FLOAT_WORD(ix,ax); } in __ieee754_powf()
164 SET_FLOAT_WORD(ax,ix); in __ieee754_powf()
167 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */ in __ieee754_powf()
168 v = one/(ax+bp[k]); in __ieee754_powf()
176 t_l = ax - (t_h-bp[k]); in __ieee754_powf()
Ds_log1p.c105 int32_t k,hx,hu,ax; in log1p() local
108 ax = hx&0x7fffffff; in log1p()
112 if(ax>=0x3ff00000) { /* x <= -1.0 */ in log1p()
116 if(ax<0x3e200000) { /* |x| < 2**-29 */ in log1p()
118 &&ax<0x3c900000) /* |x| < 2**-54 */ in log1p()
De_pow.c103 double z,ax,z_h,z_l,p_h,p_l; in __ieee754_pow() local
164 ax = fabs(x); in __ieee754_pow()
168 z = ax; /*x is +-0,+-inf,+-1*/ in __ieee754_pow()
203 t = ax-one; /* t has 20 trailing zeros */ in __ieee754_pow()
215 {ax *= two53; n -= 53; GET_HIGH_WORD(ix,ax); } in __ieee754_pow()
223 SET_HIGH_WORD(ax,ix); in __ieee754_pow()
226 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */ in __ieee754_pow()
227 v = one/(ax+bp[k]); in __ieee754_pow()
234 t_l = ax - (t_h-bp[k]); in __ieee754_pow()
/bionic/libm/upstream-freebsd/lib/msun/ld128/
Ds_erfl.c196 long double ax,R,S,P,Q,s,y,z,r; in erfl() local
208 ax = fabsl(x); in erfl()
209 if(ax < 0.84375) { in erfl()
210 if(ax < 0x1p-40L) { in erfl()
211 if(ax < 0x1p-16373L) in erfl()
223 if(ax < 1.25) { in erfl()
224 s = ax-one; in erfl()
231 if (ax >= 9) { /* inf>|x|>= 9 */ in erfl()
234 s = one/(ax*ax); in erfl()
235 if(ax < 2.85715) { /* |x| < 2.85715 */ in erfl()
[all …]
De_powl.c150 long double z, ax, z_h, z_l, p_h, p_l; in powl() local
239 ax = fabsl (x); in powl()
245 z = ax; /*x is +-0,+-inf,+-1 */ in powl()
289 ax *= two113; in powl()
291 o.value = ax; in powl()
309 o.value = ax; in powl()
311 ax = o.value; in powl()
314 u = ax - bp[k]; /* bp[0]=1.0, bp[1]=1.5 */ in powl()
315 v = one / (ax + bp[k]); in powl()
324 t_h = ax + bp[k]; in powl()
[all …]
Ds_logl.c573 int16_t ax, hx; in log1pl() local
578 ax = hx & 0x7fff; in log1pl()
579 if (ax >= 0x3fff) { /* x <= -1, or x neg NaN */ in log1pl()
580 if (ax == 0x3fff && (lx | llx) == 0) in log1pl()
585 if (ax <= 0x3f8d) { /* |x| < 2**-113 */ in log1pl()
/bionic/libc/arch-x86/atom/string/
Dssse3-strlcpy-atom.S236 movw (%ecx), %ax
237 movw %ax, (%edx)
346 movw (%ecx), %ax
347 movw %ax, (%edx)
357 movw (%ecx), %ax
358 movw %ax, (%edx)
368 movw (%ecx), %ax
369 movw %ax, (%edx)
419 movw 4(%ecx), %ax
420 movw %ax, 4(%edx)
[all …]
Dssse3-strlcat-atom.S370 movw (%ecx), %ax
371 movw %ax, (%edx)
480 movw (%ecx), %ax
481 movw %ax, (%edx)
491 movw (%ecx), %ax
492 movw %ax, (%edx)
502 movw (%ecx), %ax
503 movw %ax, (%edx)
553 movw 4(%ecx), %ax
554 movw %ax, 4(%edx)
[all …]
Dssse3-strcat-atom.S234 movw (%ecx), %ax
235 movw %ax, (%edx)
243 movw (%ecx), %ax
244 movw %ax, (%edx)
276 movw 4(%ecx), %ax
277 movw %ax, 4(%edx)
318 movw 8(%ecx), %ax
319 movw %ax, 8(%edx)
Dsse2-memset-atom.S213 movw %ax, -2(%edx)
233 movw %ax, -3(%edx)
561 movw %ax, -2(%edx)
581 movw %ax, -3(%edx)
644 movw %ax, -2(%edx)
665 movw %ax, -3(%edx)
728 movw %ax, -2(%edx)
749 movw %ax, -3(%edx)
815 movw %ax, -2(%edx)
837 movw %ax, -3(%edx)
Dssse3-strcpy-atom.S2495 movw (%ecx), %ax
2496 movw %ax, (%edx)
2511 movw (%ecx), %ax
2512 movw %ax, (%edx)
2549 movw 4(%ecx), %ax
2550 movw %ax, 4(%edx)
2602 movw 8(%ecx), %ax
2604 movw %ax, 8(%edx)
2896 movw (%ecx), %ax
2897 movw %ax, (%edx)
[all …]
/bionic/libc/arch-x86/silvermont/string/
Dsse2-memset-slm.S138 movw %ax, (%edx)
139 movw %ax, -2(%edx, %ecx)
480 movw %ax, -2(%edx)
500 movw %ax, -3(%edx)
563 movw %ax, -2(%edx)
584 movw %ax, -3(%edx)
647 movw %ax, -2(%edx)
668 movw %ax, -3(%edx)
734 movw %ax, -2(%edx)
756 movw %ax, -3(%edx)
Dsse2-memmove-slm.S281 movw %ax, -2(%edi,%ecx)
307 movw %ax, (%edx)
473 movw %ax, (%edx)
/bionic/libc/kernel/uapi/asm-x86/asm/
Dsigcontext.h118 __u32 ax; member
144 __u64 ax; member
/bionic/libm/x86_64/
De_hypot.S124 movw 24(%rsp), %ax
Ds_cos.S264 andw $32767, %ax
Ds_sin.S267 cmpw $3325, %ax
/bionic/libm/x86/
De_hypot.S142 movw 24(%esp), %ax

12