Home | History | Annotate | Download | only in config

Lines Matching refs:op_end

730 get_operands (const opcode_entry_type *opcode, char *op_end, op_type *operand)
732 char *ptr = op_end;
1199 char *op_end;
1208 for (op_start = op_end = str;
1209 *op_end != 0 && *op_end != ' ' && ! is_end_of_line[(unsigned char) *op_end];
1210 op_end++)
1213 if (op_end == op_start)
1217 c = *op_end;
1219 *op_end = 0; /* Zero-terminate op code string for hash_find() call. */
1229 *op_end = c; /* Restore original string. */
1239 input_line_pointer = op_end;
1255 new_input_line_pointer = get_operands (opcode, op_end, operand);