Lines Matching refs:str
1359 operand_matches (char const *str, char const *pattern, char delim) in operand_matches() argument
1362 if (*str++ != *pattern++) in operand_matches()
1364 return !*str || *str == delim; in operand_matches()
1372 parse_symbols (char const *str, struct symbol_value const *table, in parse_symbols() argument
1379 char const *strcomma = strchr (str, ','); in parse_symbols()
1383 ! (operand_matches (str, entry->symbol, ',') && entry->value); in parse_symbols()
1388 idx_t slen = strcomma ? strcomma - str : strlen (str); in parse_symbols()
1391 str, slen)); in parse_symbols()
1402 str = strcomma + 1; in parse_symbols()
1414 parse_integer (char const *str, strtol_error *invalid) in parse_integer() argument
1424 strtol_error e = xstrtoumax (str, &suffix, 10, &n, suffixes); in parse_integer()
1428 && *suffix == 'B' && str < suffix && suffix[-1] != 'B') in parse_integer()
1453 if (result == 0 && STRPREFIX (str, "0x")) in parse_integer()