Lines Matching refs:matching_vector
210 const bfd_target **matching_vector = NULL; in bfd_check_format_matches() local
233 amt = sizeof (*matching_vector) * 2 * _bfd_target_vector_entries; in bfd_check_format_matches()
234 matching_vector = (const bfd_target **) bfd_malloc (amt); in bfd_check_format_matches()
235 if (!matching_vector) in bfd_check_format_matches()
338 if (matching_vector) in bfd_check_format_matches()
339 matching_vector[match_count] = temp; in bfd_check_format_matches()
356 if (matching_vector) in bfd_check_format_matches()
357 matching_vector[ar_match_index] = *target; in bfd_check_format_matches()
384 if (matching_vector && match_count > 1) in bfd_check_format_matches()
385 memcpy (matching_vector, in bfd_check_format_matches()
386 matching_vector + _bfd_target_vector_entries, in bfd_check_format_matches()
387 sizeof (*matching_vector) * match_count); in bfd_check_format_matches()
403 if (matching_vector[i] == right_targ in bfd_check_format_matches()
418 if (matching_vector && match_count > 1 && best_count != match_count) in bfd_check_format_matches()
424 right_targ = matching_vector[i]; in bfd_check_format_matches()
462 if (matching_vector) in bfd_check_format_matches()
463 free (matching_vector); in bfd_check_format_matches()
476 if (matching_vector) in bfd_check_format_matches()
477 free (matching_vector); in bfd_check_format_matches()
490 *matching = (char **) matching_vector; in bfd_check_format_matches()
491 matching_vector[match_count] = NULL; in bfd_check_format_matches()
496 const char *name = matching_vector[match_count]->name; in bfd_check_format_matches()
497 *(const char **) &matching_vector[match_count] = name; in bfd_check_format_matches()