Home
last modified time | relevance | path

Searched refs:type_vector (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dcoffread.c324 type_vector = (struct type **) in coff_lookup_type()
325 xrealloc ((char *) type_vector, in coff_lookup_type()
327 memset (&type_vector[old_vector_length], 0, in coff_lookup_type()
330 return &type_vector[index]; in coff_lookup_type()
731 if (type_vector) /* Get rid of previous one */ in coff_symtab_read()
732 xfree (type_vector); in coff_symtab_read()
734 type_vector = (struct type **) in coff_symtab_read()
736 memset (type_vector, 0, type_vector_length * sizeof (struct type *)); in coff_symtab_read()
H A Dbuildsym.h216 EXTERN struct type **type_vector; variable
H A Dstabsread.c260 type_vector = (struct type **) in dbx_lookup_type()
267 type_vector = (struct type **) in dbx_lookup_type()
268 xrealloc ((char *) type_vector, in dbx_lookup_type()
270 memset (&type_vector[old_len], 0, in dbx_lookup_type()
273 return (&type_vector[index]); in dbx_lookup_type()
4346 type_vector = (struct type **) 0; in start_stabs()
4357 if (type_vector) in end_stabs()
4359 xfree (type_vector); in end_stabs()
4361 type_vector = 0; in end_stabs()
H A DChangeLog-3.x4690 * coffread.c: (coff_lookup_type) Wrong portion of type_vector was
H A DChangeLog-19912413 (read_coff_symtab): Ditto for type_vector.
H A DChangeLog-19925390 type_vector, and type_vector_length as these are now
H A DChangeLog-19936935 Previously, would bogusly index off the bottom of type_vector.