Home | History | Annotate | Download | only in disas

Lines Matching full:mips_arch_choices

3127 static const struct mips_arch_choice mips_arch_choices[] =
3255 for (i = 0, c = NULL; i < ARRAY_SIZE (mips_arch_choices) && c == NULL; i++)
3256 if (strncmp (mips_arch_choices[i].name, name, namelen) == 0
3257 && strlen (mips_arch_choices[i].name) == namelen)
3258 c = &mips_arch_choices[i];
3278 for (i = 0, c = NULL; i < ARRAY_SIZE (mips_arch_choices) && c == NULL; i++)
3280 if (mips_arch_choices[i].bfd_mach_valid
3281 && mips_arch_choices[i].bfd_mach == mach)
3283 c = &mips_arch_choices[i];
4879 for (i = 0; i < ARRAY_SIZE (mips_arch_choices); i++)
4880 if (*mips_arch_choices[i].name != '\0')
4881 fprintf (stream, " %s", mips_arch_choices[i].name);