Home | History | Annotate | Download | only in config

Lines Matching defs:op_end

898 get_operands (unsigned int noperands, char *op_end, struct h8_op *operand)
900 char *ptr = op_end;
946 get_mova_operands (char *op_end, struct h8_op *operand)
948 char *ptr = op_end;
1927 char *op_end;
1942 for (op_start = op_end = str;
1943 *op_end != 0 && *op_end != ' ';
1944 op_end++)
1946 if (*op_end == '.')
1948 dot = op_end + 1;
1949 *op_end = 0;
1950 op_end += 2;
1953 else if (*op_end == '/' && ! slash)
1954 slash = op_end;
1957 if (op_end == op_start)
1961 c = *op_end;
1963 *op_end = 0;
1990 get_mova_operands (op_end, operand);
1993 get_rtsl_operands (op_end, operand);
1995 get_operands (instruction->noperands, op_end, operand);
1997 *op_end = c;