Lines Matching refs:opt
7250 const struct aarch64_option_cpu_value_table *opt; in aarch64_parse_features() local
7295 for (opt = aarch64_features; opt->name != NULL; opt++) in aarch64_parse_features()
7296 if (strncmp (opt->name, str, optlen) == 0) in aarch64_parse_features()
7300 AARCH64_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->value); in aarch64_parse_features()
7302 AARCH64_CLEAR_FEATURE (*ext_set, *ext_set, opt->value); in aarch64_parse_features()
7306 if (opt->name == NULL) in aarch64_parse_features()
7321 const struct aarch64_cpu_option_table *opt; in aarch64_parse_cpu() local
7336 for (opt = aarch64_cpus; opt->name != NULL; opt++) in aarch64_parse_cpu()
7337 if (strlen (opt->name) == optlen && strncmp (str, opt->name, optlen) == 0) in aarch64_parse_cpu()
7339 mcpu_cpu_opt = &opt->value; in aarch64_parse_cpu()
7353 const struct aarch64_arch_option_table *opt; in aarch64_parse_arch() local
7368 for (opt = aarch64_archs; opt->name != NULL; opt++) in aarch64_parse_arch()
7369 if (strlen (opt->name) == optlen && strncmp (str, opt->name, optlen) == 0) in aarch64_parse_arch()
7371 march_cpu_opt = &opt->value; in aarch64_parse_arch()
7398 const struct aarch64_option_abi_value_table *opt; in aarch64_parse_abi() local
7407 for (opt = aarch64_abis; opt->name != NULL; opt++) in aarch64_parse_abi()
7408 if (strlen (opt->name) == optlen && strncmp (str, opt->name, optlen) == 0) in aarch64_parse_abi()
7410 aarch64_abi = opt->value; in aarch64_parse_abi()
7433 struct aarch64_option_table *opt; in md_parse_option() local
7456 for (opt = aarch64_opts; opt->option != NULL; opt++) in md_parse_option()
7458 if (c == opt->option[0] in md_parse_option()
7459 && ((arg == NULL && opt->option[1] == 0) in md_parse_option()
7460 || streq (arg, opt->option + 1))) in md_parse_option()
7463 if (opt->deprecated != NULL) in md_parse_option()
7465 arg ? arg : "", _(opt->deprecated)); in md_parse_option()
7467 if (opt->var != NULL) in md_parse_option()
7468 *opt->var = opt->value; in md_parse_option()
7501 struct aarch64_option_table *opt; in md_show_usage() local
7506 for (opt = aarch64_opts; opt->option != NULL; opt++) in md_show_usage()
7507 if (opt->help != NULL) in md_show_usage()
7508 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help)); in md_show_usage()
7530 const struct aarch64_cpu_option_table *opt; in s_aarch64_cpu() local
7550 for (opt = aarch64_cpus + 1; opt->name != NULL; opt++) in s_aarch64_cpu()
7551 if (strlen (opt->name) == optlen in s_aarch64_cpu()
7552 && strncmp (name, opt->name, optlen) == 0) in s_aarch64_cpu()
7554 mcpu_cpu_opt = &opt->value; in s_aarch64_cpu()
7576 const struct aarch64_arch_option_table *opt; in s_aarch64_arch() local
7596 for (opt = aarch64_archs + 1; opt->name != NULL; opt++) in s_aarch64_arch()
7597 if (strlen (opt->name) == optlen in s_aarch64_arch()
7598 && strncmp (name, opt->name, optlen) == 0) in s_aarch64_arch()
7600 mcpu_cpu_opt = &opt->value; in s_aarch64_arch()