Searched refs:ax (Results 1 - 25 of 125) sorted by relevance

12345

/freebsd-11-stable/contrib/gdb/gdb/
H A Dax-gdb.c33 #include "ax.h"
34 #include "ax-gdb.h"
40 Then look at the types and enums in ax-gdb.h. For the code itself,
79 static void gen_offset (struct agent_expr *ax, int offset);
81 static void gen_var_ref (struct agent_expr *ax,
85 static void gen_int_literal (struct agent_expr *ax,
90 static void require_rvalue (struct agent_expr *ax, struct axs_value *value);
91 static void gen_usual_unary (struct agent_expr *ax, struct axs_value *value);
94 static void gen_conversion (struct agent_expr *ax,
97 static void gen_usual_arithmetic (struct agent_expr *ax,
311 gen_traced_pop(struct agent_expr *ax, struct axs_value *value) argument
356 gen_sign_extend(struct agent_expr *ax, struct type *type) argument
368 gen_extend(struct agent_expr *ax, struct type *type) argument
380 gen_fetch(struct agent_expr *ax, struct type *type) argument
438 gen_left_shift(struct agent_expr *ax, int distance) argument
459 gen_frame_args_address(struct agent_expr *ax) argument
473 gen_frame_locals_address(struct agent_expr *ax) argument
490 gen_offset(struct agent_expr *ax, int offset) argument
512 gen_sym_offset(struct agent_expr *ax, struct symbol *var) argument
522 gen_var_ref(struct agent_expr *ax, struct axs_value *value, struct symbol *var) argument
648 gen_int_literal(struct agent_expr *ax, struct axs_value *value, LONGEST k, struct type *type) argument
664 require_rvalue(struct agent_expr *ax, struct axs_value *value) argument
709 gen_usual_unary(struct agent_expr *ax, struct axs_value *value) argument
775 gen_conversion(struct agent_expr *ax, struct type *from, struct type *to) argument
807 struct agent_expr *ax = new_agent_expr (0); local
829 gen_usual_arithmetic(struct agent_expr *ax, struct axs_value *value1, struct axs_value *value2) argument
866 gen_integral_promotions(struct agent_expr *ax, struct axs_value *value) argument
883 gen_cast(struct agent_expr *ax, struct axs_value *value, struct type *type) argument
938 gen_scale(struct agent_expr *ax, enum agent_op op, struct type *type) argument
956 gen_add(struct agent_expr *ax, struct axs_value *value, struct axs_value *value1, struct axs_value *value2, char *name) argument
1003 gen_sub(struct agent_expr *ax, struct axs_value *value, struct axs_value *value1, struct axs_value *value2) argument
1056 gen_binop(struct agent_expr *ax, struct axs_value *value, struct axs_value *value1, struct axs_value *value2, enum agent_op op, enum agent_op op_unsigned, int may_carry, char *name) argument
1075 gen_logical_not(struct agent_expr *ax, struct axs_value *value) argument
1088 gen_complement(struct agent_expr *ax, struct axs_value *value) argument
1105 gen_deref(struct agent_expr *ax, struct axs_value *value) argument
1126 gen_address_of(struct agent_expr *ax, struct axs_value *value) argument
1193 gen_bitfield_ref(struct agent_expr *ax, struct axs_value *value, struct type *type, int start, int end) argument
1354 gen_struct_ref(struct agent_expr *ax, struct axs_value *value, char *field, char *operator_name, char *operand_name) argument
1410 gen_repeat(union exp_element **pc, struct agent_expr *ax, struct axs_value *value) argument
1453 gen_sizeof(union exp_element **pc, struct agent_expr *ax, struct axs_value *value) argument
1478 gen_expr(union exp_element **pc, struct agent_expr *ax, struct axs_value *value) argument
1730 struct agent_expr *ax = new_agent_expr (0); local
1782 struct agent_expr *ax = new_agent_expr (scope); local
[all...]
/freebsd-11-stable/tools/test/testfloat/
H A Dslowfloat-32.c188 floatX ax; local
190 ax.isNaN = FALSE;
191 ax.isInf = FALSE;
192 ax.sign = ( a < 0 );
193 ax.sig.a1 = ax.sign ? - a : a;
194 ax.sig.a0 = 0;
196 ax.isZero = TRUE;
197 return ax;
199 ax
251 floatX ax; local
370 floatX ax; local
588 floatXAdd( floatX ax, floatX bx ) argument
660 floatXMul( floatX ax, floatX bx ) argument
694 floatXDiv( floatX ax, floatX bx ) argument
737 floatXRem( floatX ax, floatX bx ) argument
814 floatXEq( floatX ax, floatX bx ) argument
825 floatXLe( floatX ax, floatX bx ) argument
848 floatXLt( floatX ax, floatX bx ) argument
982 floatX ax, bx; local
995 floatX ax, bx; local
1008 floatX ax, bx; local
1133 floatX ax, bx; local
1146 floatX ax, bx; local
1159 floatX ax, bx; local
[all...]
H A Dslowfloat-64.c271 floatX ax; local
273 ax.isNaN = FALSE;
274 ax.isInf = FALSE;
275 ax.sign = ( a < 0 );
276 ax.sig.a1 = 0;
277 ax.sig.a0 = ax.sign ? - (bits64) a : a;
279 ax.isZero = TRUE;
280 return ax;
282 ax
334 floatX ax; local
401 floatX ax; local
521 floatX ax; local
648 floatX ax; local
827 floatX ax; local
998 floatXAdd( floatX ax, floatX bx ) argument
1070 floatXMul( floatX ax, floatX bx ) argument
1104 floatXDiv( floatX ax, floatX bx ) argument
1147 floatXRem( floatX ax, floatX bx ) argument
1224 floatXEq( floatX ax, floatX bx ) argument
1235 floatXLe( floatX ax, floatX bx ) argument
1258 floatXLt( floatX ax, floatX bx ) argument
1492 floatX ax, bx; local
1505 floatX ax, bx; local
1518 floatX ax, bx; local
1681 floatX ax, bx; local
1694 floatX ax, bx; local
1707 floatX ax, bx; local
1868 floatX ax, bx; local
1881 floatX ax, bx; local
1894 floatX ax, bx; local
2057 floatX ax, bx; local
2070 floatX ax, bx; local
2083 floatX ax, bx; local
[all...]
/freebsd-11-stable/lib/msun/amd64/
H A De_remainderl.S44 fstsw %ax
45 testw $0x400,%ax
H A De_fmodl.S43 fstsw %ax
44 testw $0x400,%ax
H A De_remainder.S47 fstsw %ax
48 testw $0x400,%ax
H A De_remainderf.S17 fstsw %ax
18 testw $0x400,%ax
H A De_fmod.S45 fstsw %ax
46 testw $0x400,%ax
H A De_fmodf.S15 fstsw %ax
16 testw $0x400,%ax
/freebsd-11-stable/tools/test/vm86/
H A Dvm86_test_asm.s39 1: inc %ax
/freebsd-11-stable/lib/libc/i386/string/
H A Dswab.S61 rorw $8,%ax
71 rorw $8,%ax
74 rorw $8,%ax
77 rorw $8,%ax
80 rorw $8,%ax
83 rorw $8,%ax
86 rorw $8,%ax
89 rorw $8,%ax
92 rorw $8,%ax
/freebsd-11-stable/stand/i386/libi386/
H A Drelocater_tramp.S91 movw %ax, %ss
92 movw %ax, %ds
93 movw %ax, %es
94 movw %ax, %fs
95 movw %ax, %gs
138 movw $SEL_RDATA, %ax
139 movw %ax, %ds
140 movw %ax, %es
141 movw %ax, %fs
142 movw %ax,
[all...]
/freebsd-11-stable/contrib/ntp/scripts/deprecated/
H A Dntp-restart6 kill -INT `ps -ax | egrep "ntpd" | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/`
/freebsd-11-stable/contrib/binutils/include/coff/
H A Decoff.h248 #define AUX_GET_ANY(bigend, ax, field) \
249 ((bigend) ? bfd_getb32 ((ax)->field) : bfd_getl32 ((ax)->field))
251 #define AUX_GET_DNLOW(bigend, ax) AUX_GET_ANY ((bigend), (ax), a_dnLow)
252 #define AUX_GET_DNHIGH(bigend, ax) AUX_GET_ANY ((bigend), (ax), a_dnHigh)
253 #define AUX_GET_ISYM(bigend, ax) AUX_GET_ANY ((bigend), (ax), a_isym)
254 #define AUX_GET_ISS(bigend, ax) AUX_GET_AN
[all...]
/freebsd-11-stable/lib/msun/i387/
H A Ds_cos.S42 fnstsw %ax
50 fnstsw %ax
H A Ds_sin.S42 fnstsw %ax
50 fnstsw %ax
H A Ds_tan.S42 fnstsw %ax
51 fnstsw %ax
H A De_fmod.S43 fstsw %ax
H A De_remainder.S43 fstsw %ax
/freebsd-11-stable/lib/msun/src/
H A Ds_clogl.c62 long double ax, ax2h, ax2l, axh, axl, ay, ay2h, ay2l, ayh, ayl; local
74 ax = fabsl(x);
76 if (ax < ay) {
77 t = ax;
78 ax = ay;
82 GET_LDBL_EXPSIGN(hax, ax);
91 /* Avoid spurious underflow, and reduce inaccuracies when ax is 1. */
92 if (ax == 1) {
98 /* Avoid underflow when ax is not small. Also handle zero args. */
100 RETURNI(CMPLXL(logl(ax),
[all...]
H A Ds_clog.c48 double_t ax, ax2h, ax2l, axh, axl, ay, ay2h, ay2l, ayh, ayl, sh, sl, t; local
57 ax = fabs(x);
59 if (ax < ay) {
60 t = ax;
61 ax = ay;
65 GET_HIGH_WORD(hax, ax);
74 /* Avoid spurious underflow, and reduce inaccuracies when ax is 1. */
75 if (ax == 1) {
81 /* Avoid underflow when ax is not small. Also handle zero args. */
83 return (CMPLX(log(ax),
[all...]
H A Ds_clogf.c48 float_t ax, ax2h, ax2l, axh, axl, ay, ay2h, ay2l, ayh, ayl, sh, sl, t; local
57 ax = fabsf(x);
59 if (ax < ay) {
60 t = ax;
61 ax = ay;
65 GET_FLOAT_WORD(hax, ax);
74 /* Avoid spurious underflow, and reduce inaccuracies when ax is 1. */
81 /* Avoid underflow when ax is not small. Also handle zero args. */
83 return (CMPLXF(logf(ax), v));
92 /* Reduce inaccuracies and avoid underflow when ax i
[all...]
/freebsd-11-stable/sys/i386/acpica/
H A Dacpi_wakecode.S57 mov %cs, %ax /* copy %cs to %ds. Remember these */
58 mov %ax, %ds /* are offsets rather than selectors */
59 mov %ax, %ss
61 xorw %ax, %ax
62 pushw %ax
80 movw $0x4c0, %ax
82 shrw $8, %ax
142 mov %ax, %ds
/freebsd-11-stable/stand/pc98/boot0.5/
H A Dsyscons.s48 movw %ax, %es:(%bx)
49 xorw %ax, %ax
50 movw %ax, %es
67 movw %ax, %es:(%bx)
108 # destroyed: %ax, %bx
112 movw %dx, %ax # AX=Y
113 shlw %ax # AX=Y*64
114 shlw %ax
115 shlw %ax
[all...]
H A Dboot.s44 movw secsize(%si), %ax
45 movw %ax, b_secsize
50 movw %ax, b_partn # save real parttion number
60 movw parttable(%si), %ax
61 movw %ax, b_cylinder
64 movw $0x1d00, %ax
68 subw %cx, %ax
69 subw $0x100, %ax
70 movw %ax, b_bootseg
86 xorw %ax,
[all...]

Completed in 269 milliseconds

12345