Home
last modified time | relevance | path

Searched refs:ext_oper (Results 1 – 4 of 4) sorted by relevance

/openbsd/gnu/usr.bin/binutils/gas/config/
H A Dtc-arc.c899 struct arc_ext_operand_value *ext_oper; local
1034 ext_oper = (struct arc_ext_operand_value *) \
1049 free (ext_oper);
1061 ext_oper->operand.name = name;
1062 ext_oper->operand.value = number;
1064 ext_oper->operand.flags = imode;
1066 ext_oper->next = arc_ext_operands;
1067 arc_ext_operands = ext_oper;
1678 while (ext_oper)
1680 l = strlen (ext_oper->operand.name);
[all …]
/openbsd/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-arc.c410 struct arc_ext_operand_value *ext_oper; in arc_extoper() local
559 free (ext_oper); in arc_extoper()
567 (valueT) &ext_oper->operand, in arc_extoper()
572 ext_oper->operand.name = name; in arc_extoper()
573 ext_oper->operand.value = number; in arc_extoper()
575 ext_oper->operand.flags = imode; in arc_extoper()
577 ext_oper->next = arc_ext_operands; in arc_extoper()
578 arc_ext_operands = ext_oper; in arc_extoper()
1162 while (ext_oper) in md_operand()
1164 l = strlen (ext_oper->operand.name); in md_operand()
[all …]
/openbsd/gnu/usr.bin/binutils-2.17/opcodes/
H A Darc-opc.c1047 struct arc_ext_operand_value *ext_oper = arc_ext_operands; in lookup_register() local
1049 while (ext_oper) in lookup_register()
1051 if (ext_oper->operand.type == type && ext_oper->operand.value == regno) in lookup_register()
1052 return (&ext_oper->operand); in lookup_register()
1053 ext_oper = ext_oper->next; in lookup_register()
1693 struct arc_ext_operand_value *ext_oper = arc_ext_operands; in arc_opcode_lookup_suffix() local
1695 while (ext_oper) in arc_opcode_lookup_suffix()
1697 if (type == &arc_operands[ext_oper->operand.type] in arc_opcode_lookup_suffix()
1698 && value == ext_oper->operand.value) in arc_opcode_lookup_suffix()
1699 return (&ext_oper->operand); in arc_opcode_lookup_suffix()
[all …]
/openbsd/gnu/usr.bin/binutils/opcodes/
H A Darc-opc.c1723 struct arc_ext_operand_value *ext_oper = arc_ext_operands; local
1725 while (ext_oper)
1727 if (type == &arc_operands[ext_oper->operand.type]
1728 && value == ext_oper->operand.value)
1729 return (&ext_oper->operand);
1730 ext_oper = ext_oper->next;
1748 struct arc_ext_operand_value *ext_oper = arc_ext_operands; local
1750 while (ext_oper)
1752 if (ext_oper->operand.type == type && ext_oper->operand.value == regno)
1753 return (&ext_oper->operand);
[all …]