Lines Matching refs:matching_vector

233   const bfd_target **matching_vector = NULL;  in bfd_check_format_matches()  local
258 amt = sizeof (*matching_vector) * 2 * _bfd_target_vector_entries; in bfd_check_format_matches()
259 matching_vector = (const bfd_target **) bfd_malloc (amt); in bfd_check_format_matches()
260 if (!matching_vector) in bfd_check_format_matches()
367 if (matching_vector) in bfd_check_format_matches()
368 matching_vector[match_count] = abfd->xvec; in bfd_check_format_matches()
390 if (matching_vector) in bfd_check_format_matches()
391 matching_vector[ar_match_index] = *target; in bfd_check_format_matches()
421 if (matching_vector && match_count > 1) in bfd_check_format_matches()
422 memcpy (matching_vector, in bfd_check_format_matches()
423 matching_vector + _bfd_target_vector_entries, in bfd_check_format_matches()
424 sizeof (*matching_vector) * match_count); in bfd_check_format_matches()
440 if (matching_vector[i] == right_targ in bfd_check_format_matches()
455 if (matching_vector && match_count > 1 && best_count != match_count) in bfd_check_format_matches()
461 right_targ = matching_vector[i]; in bfd_check_format_matches()
504 free (matching_vector); in bfd_check_format_matches()
522 free (matching_vector); in bfd_check_format_matches()
536 *matching = (char **) matching_vector; in bfd_check_format_matches()
537 matching_vector[match_count] = NULL; in bfd_check_format_matches()
542 const char *name = matching_vector[match_count]->name; in bfd_check_format_matches()
543 *(const char **) &matching_vector[match_count] = name; in bfd_check_format_matches()
547 free (matching_vector); in bfd_check_format_matches()