Lines Matching refs:strp
93 const char **strp,
97 if (**strp == '#')
98 ++*strp;
106 const char **strp,
114 if (**strp == '#')
115 ++*strp;
117 if (strncasecmp (*strp, "high(", 5) == 0)
119 *strp += 5;
120 errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_M32R_HI16_ULO,
122 if (**strp != ')')
124 ++*strp;
134 else if (strncasecmp (*strp, "shigh(", 6) == 0)
136 *strp += 6;
137 errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_M32R_HI16_SLO,
139 if (**strp != ')')
141 ++*strp;
153 return cgen_parse_unsigned_integer (cd, strp, opindex, valuep);
162 const char ** strp,
170 if (**strp == '#')
171 ++*strp;
173 if (strncasecmp (*strp, "low(", 4) == 0)
175 *strp += 4;
176 errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_M32R_LO16,
178 if (**strp != ')')
180 ++*strp;
188 if (strncasecmp (*strp, "sda(", 4) == 0)
190 *strp += 4;
191 errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_M32R_SDA16,
193 if (**strp != ')')
195 ++*strp;
200 return cgen_parse_signed_integer (cd, strp, opindex, valuep);
209 const char **strp,
217 if (**strp == '#')
218 ++*strp;
220 if (strncasecmp (*strp, "low(", 4) == 0)
222 *strp += 4;
223 errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_M32R_LO16,
225 if (**strp != ')')
227 ++*strp;
235 return cgen_parse_unsigned_integer (cd, strp, opindex, valuep);