Lines Matching refs:numexp
188 int numexp = 0; in get_operands() local
207 exp[numexp].X_op = O_absent; in get_operands()
212 exp[numexp].X_add_number = TIC80_OPERAND_M_SI | TIC80_OPERAND_M_LI; in get_operands()
218 exp[numexp].X_add_number = TIC80_OPERAND_SCALED; in get_operands()
223 numexp++; in get_operands()
256 expression (&exp[numexp]); in get_operands()
258 if (exp[numexp].X_op == O_illegal) in get_operands()
260 else if (exp[numexp].X_op == O_absent) in get_operands()
263 numexp++; in get_operands()
269 exp[numexp].X_op = O_absent; in get_operands()
270 exp[numexp++].X_add_number = TIC80_OPERAND_PARENS; in get_operands()
274 exp[numexp].X_op = O_illegal; in get_operands()
276 return numexp; in get_operands()
294 int numexp; /* Number of expressions from parsing operands. */ in find_opcode() local
303 numexp = get_operands (myops); in find_opcode()
318 for (expi = 0, opi = -1; (expi < numexp) && match; expi++) in find_opcode()