Lines Matching refs:lopt
7434 struct aarch64_long_option_table *lopt; in md_parse_option() local
7474 for (lopt = aarch64_long_opts; lopt->option != NULL; lopt++) in md_parse_option()
7477 if (c == lopt->option[0] in md_parse_option()
7479 && strncmp (arg, lopt->option + 1, in md_parse_option()
7480 strlen (lopt->option + 1)) == 0) in md_parse_option()
7483 if (lopt->deprecated != NULL) in md_parse_option()
7485 _(lopt->deprecated)); in md_parse_option()
7488 return lopt->func (arg + strlen (lopt->option) - 1); in md_parse_option()
7502 struct aarch64_long_option_table *lopt; in md_show_usage() local
7510 for (lopt = aarch64_long_opts; lopt->option != NULL; lopt++) in md_show_usage()
7511 if (lopt->help != NULL) in md_show_usage()
7512 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help)); in md_show_usage()