Lines Matching refs:instring
1957 char *instring) /* Text of a vax instruction: we modify. */
1975 if (is_whitespace (*instring))
1976 ++instring;
1979 for (p = instring; *p && !is_whitespace (*p); p++)
1984 if (p - instring == 0)
1994 /* Here with instring pointing to what better be an op-name, and p
1996 We trust instring points to an op-name, with no whitespace. */
1997 vwP = str_hash_find (op_hash, instring);
2011 We let instring track the text, while p tracks a part of the
2022 instring = p; /* Point just past operation code. */
2028 /* Here to parse one operand. Leave instring pointing just
2032 else if (*instring)
2034 for (q = instring; (c = *q) && c != ','; q++)
2042 vip_op (instring, operandp);
2046 instring = q + (c ? 1 : 0); /* Next operand (if any). */
2054 if (is_whitespace (*instring))
2055 instring++;
2056 if (*instring)