Home
last modified time | relevance | path

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

123456

/freebsd-13-stable/stand/i386/libi386/
HDrelocater_tramp.S89 movw %ax, %ss
90 movw %ax, %ds
91 movw %ax, %es
92 movw %ax, %fs
93 movw %ax, %gs
136 movw $SEL_RDATA, %ax
137 movw %ax, %ds
138 movw %ax, %es
139 movw %ax, %fs
140 movw %ax, %gs
[all …]
/freebsd-13-stable/lib/msun/ld128/
HDs_cospil.c50 long double ai, ar, ax, c; in cospil() local
52 ax = fabsl(x); in cospil()
54 if (ax <= 1) { in cospil()
55 if (ax < 0.25) { in cospil()
56 if (ax < 0x1p-60) { in cospil()
60 return (__kernel_cospil(ax)); in cospil()
63 if (ax < 0.5) in cospil()
64 c = __kernel_sinpil(0.5 - ax); in cospil()
65 else if (ax < 0.75) { in cospil()
66 if (ax == 0.5) in cospil()
[all …]
HDs_sinpil.c50 long double ai, ar, ax, hi, lo, s, xhi, xlo; in sinpil() local
52 ax = fabsl(x); in sinpil()
54 if (ax < 1) { in sinpil()
55 if (ax < 0.25) { in sinpil()
56 if (ax < 0x1p-60) { in sinpil()
67 s = __kernel_sinpil(ax); in sinpil()
71 if (ax < 0.5) in sinpil()
72 s = __kernel_cospil(0.5 - ax); in sinpil()
73 else if (ax < 0.75) in sinpil()
74 s = __kernel_cospil(ax - 0.5); in sinpil()
[all …]
HDs_erfl.c194 long double ax,R,S,P,Q,s,y,z,r; in erfl() local
206 ax = fabsl(x); in erfl()
207 if(ax < 0.84375) { in erfl()
208 if(ax < 0x1p-40L) { in erfl()
209 if(ax < 0x1p-16373L) in erfl()
221 if(ax < 1.25) { in erfl()
222 s = ax-one; in erfl()
229 if (ax >= 9) { /* inf>|x|>= 9 */ in erfl()
232 s = one/(ax*ax); in erfl()
233 if(ax < 2.85715) { /* |x| < 2.85715 */ in erfl()
[all …]
HDs_tanpil.c73 long double ai, ar, ax, hi, lo, t; in tanpil() local
76 ax = fabsl(x); in tanpil()
78 if (ax < 1) { in tanpil()
79 if (ax < 0.5) { in tanpil()
80 if (ax < 0x1p-60) { in tanpil()
90 t = __kernel_tanpil(ax); in tanpil()
91 } else if (ax == 0.5) in tanpil()
94 t = -__kernel_tanpil(1 - ax); in tanpil()
98 if (ax < 0x1p112) { in tanpil()
100 FFLOORL128(ax, ai, ar); in tanpil()
[all …]
/freebsd-13-stable/lib/msun/src/
HDs_cospi.c79 double ax, c; in cospi() local
84 INSERT_WORDS(ax, ix, lx); in cospi()
89 if ((int)ax == 0) in cospi()
92 return (__kernel_cospi(ax)); in cospi()
96 c = __kernel_sinpi(0.5 - ax); in cospi()
98 if (ax == 0.5) in cospi()
100 c = -__kernel_sinpi(ax - 0.5); in cospi()
102 c = -__kernel_cospi(1 - ax); in cospi()
108 ax -= x; in cospi()
109 EXTRACT_WORDS(ix, lx, ax); in cospi()
[all …]
HDs_cospif.c46 float ax, c; in cospif() local
51 SET_FLOAT_WORD(ax, ix); in cospif()
57 if ((int)ax == 0) in cospif()
60 return (__kernel_cospif(ax)); in cospif()
64 c = __kernel_sinpif(0.5F - ax); in cospif()
68 c = -__kernel_sinpif(ax - 0.5F); in cospif()
70 c = -__kernel_cospif(1 - ax); in cospif()
76 ax -= x; in cospif()
77 GET_FLOAT_WORD(ix, ax); in cospif()
81 c = ix == 0 ? 1 : __kernel_cospif(ax); in cospif()
[all …]
HDs_sinpi.c82 double ax, hi, lo, s; in sinpi() local
87 INSERT_WORDS(ax, ix, lx); in sinpi()
107 s = __kernel_sinpi(ax); in sinpi()
112 s = __kernel_cospi(0.5 - ax); in sinpi()
114 s = __kernel_cospi(ax - 0.5); in sinpi()
116 s = __kernel_sinpi(1 - ax); in sinpi()
122 ax -= x; in sinpi()
123 EXTRACT_WORDS(ix, lx, ax); in sinpi()
130 s = __kernel_sinpi(ax); in sinpi()
132 s = __kernel_cospi(0.5 - ax); in sinpi()
[all …]
HDs_sinpif.c51 float ax, hi, lo, s; in sinpif() local
56 SET_FLOAT_WORD(ax, ix); in sinpif()
71 s = __kernel_sinpif(ax); in sinpif()
76 s = __kernel_cospif(0.5F - ax); in sinpif()
78 s = __kernel_cospif(ax - 0.5F); in sinpif()
80 s = __kernel_sinpif(1 - ax); in sinpif()
86 ax -= x; in sinpif()
87 GET_FLOAT_WORD(ix, ax); in sinpif()
94 s = __kernel_sinpif(ax); in sinpif()
96 s = __kernel_cospif(0.5F - ax); in sinpif()
[all …]
HDcatrig.c277 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinh() local
283 ax = fabs(x); in casinh()
304 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in casinh()
320 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in casinh()
323 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinh()
358 double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacos() local
367 ax = fabs(x); in cacos()
388 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in cacos()
405 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in cacos()
408 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x); in cacos()
[all …]
HDcatrigf.c148 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhf() local
154 ax = fabsf(x); in casinhf()
167 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in casinhf()
181 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in casinhf()
184 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinhf()
203 float x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacosf() local
212 ax = fabsf(x); in cacosf()
225 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in cacosf()
239 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in cacosf()
242 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x); in cacosf()
[all …]
HDcatrigl.c167 long double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhl() local
173 ax = fabsl(x); in casinhl()
186 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in casinhl()
200 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in casinhl()
203 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y); in casinhl()
223 long double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacosl() local
232 ax = fabsl(x); in cacosl()
245 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) { in cacosl()
259 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4) in cacosl()
262 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x); in cacosl()
[all …]
HDs_clog.c46 double_t ax, ax2h, ax2l, axh, axl, ay, ay2h, ay2l, ayh, ayl, sh, sl, t; in clog() local
55 ax = fabs(x); in clog()
57 if (ax < ay) { in clog()
58 t = ax; in clog()
59 ax = ay; in clog()
63 GET_HIGH_WORD(hax, ax); in clog()
73 if (ax == 1) { in clog()
81 return (CMPLX(log(ax), v)); in clog()
100 t = (double)(ax * (0x1p27 + 1)); in clog()
101 axh = (double)(ax - t) + t; in clog()
[all …]
HDs_clogl.c60 long double ax, ax2h, ax2l, axh, axl, ay, ay2h, ay2l, ayh, ayl; in clogl() local
72 ax = fabsl(x); in clogl()
74 if (ax < ay) { in clogl()
75 t = ax; in clogl()
76 ax = ay; in clogl()
80 GET_LDBL_EXPSIGN(hax, ax); in clogl()
90 if (ax == 1) { in clogl()
98 RETURNI(CMPLXL(logl(ax), v)); in clogl()
117 t = (long double)(ax * (MULT_REDUX + 1)); in clogl()
118 axh = (long double)(ax - t) + t; in clogl()
[all …]
HDs_clogf.c46 float_t ax, ax2h, ax2l, axh, axl, ay, ay2h, ay2l, ayh, ayl, sh, sl, t; in clogf() local
55 ax = fabsf(x); in clogf()
57 if (ax < ay) { in clogf()
58 t = ax; in clogf()
59 ax = ay; in clogf()
63 GET_FLOAT_WORD(hax, ax); in clogf()
81 return (CMPLXF(logf(ax), v)); in clogf()
100 t = (float)(ax * (0x1p12F + 1)); in clogf()
101 axh = (float)(ax - t) + t; in clogf()
102 axl = ax - axh; in clogf()
[all …]
HDs_tanpi.c113 double ax, hi, lo, odd, t; in tanpi() local
118 INSERT_WORDS(ax, ix, lx); in tanpi()
137 t = __kernel_tanpi(ax); in tanpi()
138 } else if (ax == 0.5) in tanpi()
141 t = - __kernel_tanpi(1 - ax); in tanpi()
148 ax -= x; in tanpi()
149 EXTRACT_WORDS(ix, lx, ax); in tanpi()
152 t = ix == 0 ? copysign(0, odd) : __kernel_tanpi(ax); in tanpi()
153 else if (ax == 0.5) in tanpi()
156 t = - __kernel_tanpi(1 - ax); in tanpi()
HDs_tanpif.c61 float ax, hi, lo, odd, t; in tanpif() local
66 SET_FLOAT_WORD(ax, ix); in tanpif()
80 t = __kernel_tanpif(ax); in tanpif()
84 t = - __kernel_tanpif(1 - ax); in tanpif()
91 ax -= x; in tanpif()
92 GET_FLOAT_WORD(ix, ax); in tanpif()
95 t = ix == 0 ? copysignf(0, odd) : __kernel_tanpif(ax); in tanpif()
99 t = - __kernel_tanpif(1 - ax); in tanpif()
/freebsd-13-stable/lib/msun/ld80/
HDs_cospil.c52 long double ax, c; in cospil() local
59 INSERT_LDBL80_WORDS(ax, ix, lx); in cospil()
69 RETURNI(__kernel_cospil(ax)); in cospil()
73 c = __kernel_sinpil(0.5 - ax); in cospil()
75 if (ax == 0.5) in cospil()
77 c = -__kernel_sinpil(ax - 0.5); in cospil()
79 c = -__kernel_cospil(1 - ax); in cospil()
85 ax -= x; in cospil()
86 EXTRACT_LDBL80_WORDS(ix, lx, ax); in cospil()
90 c = ix == 0 ? 1 : __kernel_cospil(ax); in cospil()
[all …]
HDs_sinpil.c54 long double ax, hi, lo, s; in sinpil() local
61 INSERT_LDBL80_WORDS(ax, ix, lx); in sinpil()
78 s = __kernel_sinpil(ax); in sinpil()
83 s = __kernel_cospil(0.5 - ax); in sinpil()
85 s = __kernel_cospil(ax - 0.5); in sinpil()
87 s = __kernel_sinpil(1 - ax); in sinpil()
93 ax -= x; in sinpil()
94 EXTRACT_LDBL80_WORDS(ix, lx, ax); in sinpil()
101 s = __kernel_sinpil(ax); in sinpil()
103 s = __kernel_cospil(0.5 - ax); in sinpil()
[all …]
HDs_erfl.c220 long double ax,R,S,P,Q,s,y,z,r; in erfl() local
234 ax = fabsl(x); in erfl()
235 if(ax < 0.84375) { in erfl()
236 if(ax < 0x1p-34L) { in erfl()
237 if(ax < 0x1p-16373L) in erfl()
247 if(ax < 1.25) { in erfl()
248 s = ax-one; in erfl()
253 if(ax >= 7) { /* inf>|x|>= 7 */ in erfl()
256 s = one/(ax*ax); in erfl()
257 if(ax < 2.85715) { /* |x| < 2.85715 */ in erfl()
[all …]
HDs_tanpil.c75 long double ax, hi, lo, odd, t; in tanpil() local
82 INSERT_LDBL80_WORDS(ax, ix, lx); in tanpil()
99 t = __kernel_tanpil(ax); in tanpil()
100 } else if (ax == 0.5) in tanpil()
103 t = -__kernel_tanpil(1 - ax); in tanpil()
110 ax -= x; in tanpil()
111 EXTRACT_LDBL80_WORDS(ix, lx, ax); in tanpil()
114 t = ix == 0 ? copysignl(0, odd) : __kernel_tanpil(ax); in tanpil()
115 else if (ax == 0.5L) in tanpil()
118 t = -__kernel_tanpil(1 - ax); in tanpil()
/freebsd-13-stable/lib/libc/i386/string/
HDswab.S59 rorw $8,%ax
69 rorw $8,%ax
72 rorw $8,%ax
75 rorw $8,%ax
78 rorw $8,%ax
81 rorw $8,%ax
84 rorw $8,%ax
87 rorw $8,%ax
90 rorw $8,%ax
/freebsd-13-stable/stand/i386/gptboot/
HDgptldr.S80 mov %si,%ax # last byte we want to copy
81 shr $4,%ax # from boot2, with %si made as
82 add $(COPY_BLKS*COPY_BLK_SZ/16),%ax # small as possible.
84 mov %ax,%ds #
85 mov $MEM_USR/16,%ax # Set %es:(-1) to point at
86 add $(COPY_BLKS*COPY_BLK_SZ/16),%ax # the last byte we
87 mov %ax,%es # want to copy boot2 into.
91 mov %ds,%ax # the end of the next 32k to
92 sub $COPY_BLK_SZ/16,%ax # copy from boot2
93 mov %ax,%ds
[all …]
/freebsd-13-stable/sys/amd64/acpica/
HDacpi_wakecode.S62 mov %cs, %ax /* copy %cs to %ds. Remember these */
63 mov %ax, %ds /* are offsets rather than selectors */
64 mov %ax, %ss
66 xorw %ax, %ax
67 pushw %ax
85 movw $0x4c0, %ax
87 shrw $8, %ax
147 mov %ax, %ds
228 mov %ax, %ds
/freebsd-13-stable/contrib/bearssl/T0/
HDT0Comp.cs865 int ax = cpu.Pop(); in T0Comp()
866 cpu.Push(-ax); in T0Comp()
870 int ax = cpu.Pop(); in T0Comp()
871 cpu.Push(ax * bx); in T0Comp()
875 int ax = cpu.Pop(); in T0Comp()
876 cpu.Push(ax / bx); in T0Comp()
880 uint ax = cpu.Pop(); in T0Comp()
881 cpu.Push(ax / bx); in T0Comp()
885 int ax = cpu.Pop(); in T0Comp()
886 cpu.Push(ax % bx); in T0Comp()
[all …]

123456