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

1234

/freebsd-9.3-release/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-9.3-release/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-9.3-release/lib/msun/i387/
H A Ds_cos.S42 fnstsw %ax
43 andw $0x400,%ax
50 fnstsw %ax
51 andw $0x400,%ax
H A Ds_sin.S42 fnstsw %ax
43 andw $0x400,%ax
50 fnstsw %ax
51 andw $0x400,%ax
H A Ds_tan.S42 fnstsw %ax
43 andw $0x400,%ax
51 fstsw %ax
52 andw $0x400,%ax
H A De_fmod.S43 fstsw %ax
H A De_remainder.S43 fstsw %ax
H A De_remainderf.S15 fstsw %ax
H A De_remainderl.S44 fstsw %ax
/freebsd-9.3-release/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-9.3-release/lib/msun/amd64/
H A De_remainderl.S44 fstsw %ax
45 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 Ds_remquo.S40 fstsw %ax
41 btw $10,%ax
H A Ds_remquof.S40 fstsw %ax
41 btw $10,%ax
/freebsd-9.3-release/contrib/ntp/scripts/deprecated/
H A Dntp-restart6 kill -INT `ps -ax | egrep "ntpd" | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/`
/freebsd-9.3-release/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-9.3-release/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-9.3-release/sys/boot/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...]
H A Ddisk.s42 movw iplbuf(%bx), %ax
43 cmpw $0xaa55, %ax
45 movw $1, %ax
48 xorw %ax, %ax
73 movw npartition, %ax
74 movw %ax, %di
81 movw %ax, %di
96 movw curdevice, %ax
97 movw %ax,
[all...]
/freebsd-9.3-release/sys/amd64/acpica/
H A Dacpi_wakecode.S64 mov %cs, %ax /* copy %cs to %ds. Remember these */
65 mov %ax, %ds /* are offsets rather than selectors */
66 mov %ax, %ss
68 xorw %ax, %ax
69 pushw %ax
87 movw $0x4c0, %ax
89 shrw $8, %ax
149 mov %ax, %ds
220 mov %ax,
[all...]
/freebsd-9.3-release/sys/boot/pc98/boot2/
H A Dboot1.S91 xor %ax,%ax
92 mov %ax,%si
93 mov %ax,%ds
94 mov %ax,%di
95 mov $MEM_SYS,%ax
96 mov %ax,%es
102 mov $0xfd00,%ax
103 mov %ax,%ds
124 mov $0x0a00,%ax /* 8
[all...]
/freebsd-9.3-release/sys/boot/pc98/boot0/
H A Dboot0.s43 xor %ax, %ax
44 mov %ax, %ds
62 push %ax
63 mov %es, %ax
64 add $0x40, %ax
65 mov %ax, %es
66 pop %ax
84 push %ax
85 mov %es, %ax
[all...]

Completed in 101 milliseconds

1234