Lines Matching refs:ext_oper
407 struct arc_ext_operand_value *ext_oper; in arc_extoper() local
542 ext_oper = (struct arc_ext_operand_value *) in arc_extoper()
551 S_SET_VALUE (symbolP, (valueT) &ext_oper->operand); in arc_extoper()
557 free (ext_oper); in arc_extoper()
565 (valueT) &ext_oper->operand, in arc_extoper()
570 ext_oper->operand.name = name; in arc_extoper()
571 ext_oper->operand.value = number; in arc_extoper()
572 ext_oper->operand.type = arc_operand_type (opertype); in arc_extoper()
573 ext_oper->operand.flags = imode; in arc_extoper()
575 ext_oper->next = arc_ext_operands; in arc_extoper()
576 arc_ext_operands = ext_oper; in arc_extoper()
1117 struct arc_ext_operand_value *ext_oper = arc_ext_operands; in md_operand() local
1120 while (ext_oper) in md_operand()
1122 l = strlen (ext_oper->operand.name); in md_operand()
1123 if (!strncmp (p, ext_oper->operand.name, l) && !ISALNUM (*(p + l))) in md_operand()
1127 expressionP->X_add_number = (offsetT) &ext_oper->operand; in md_operand()
1130 ext_oper = ext_oper->next; in md_operand()