Home
last modified time | relevance | path

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

/mirbsd/src/gnu/usr.bin/binutils/gas/config/
Dtc-tic80.c188 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()
[all …]
Dtc-mmix.c455 int numexp = 0; in get_operands() local
469 else if (numexp == max_operands) in get_operands()
481 expression (&exp[numexp]); in get_operands()
483 if (exp[numexp].X_op == O_illegal) in get_operands()
487 else if (exp[numexp].X_op == O_absent) in get_operands()
492 numexp++; in get_operands()
509 exp[numexp].X_op = O_illegal; in get_operands()
511 return (numexp); in get_operands()
Dtc-tic54x.c3361 int numexp = 0; local
3365 while (numexp < MAX_OPERANDS && !is_end_of_line[(int) *lptr])
3379 as_bad ("Unbalanced parenthesis in operand %d", numexp);
3396 strncpy (operands[numexp].buf, op_start, len);
3397 operands[numexp].buf[len] = 0;
3401 while (len > 0 && ISSPACE (operands[numexp].buf[len - 1]))
3402 operands[numexp].buf[--len] = 0;
3404 ++numexp;
3434 for (i = 0; i < numexp; i++)
3481 return numexp;
/mirbsd/src/lib/libkeynote/
Dkeynote.y27 %type <bool> stringexp numexp expr floatexp
327 | numexp { $$ = $1; }
333 numexp: numex LT numex { $$ = $1 < $3; }