Home
last modified time | relevance | path

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

/netbsd/src/external/gpl3/gdb/dist/gdb/
Dcoffread.c144 static struct type **type_vector; variable
331 type_vector = (struct type **) in coff_lookup_type()
332 xrealloc ((char *) type_vector, in coff_lookup_type()
334 memset (&type_vector[old_vector_length], 0, in coff_lookup_type()
337 return &type_vector[index]; in coff_lookup_type()
801 if (type_vector) /* Get rid of previous one. */ in coff_symtab_read()
802 xfree (type_vector); in coff_symtab_read()
804 type_vector = XCNEWVEC (struct type *, type_vector_length); in coff_symtab_read()
Dstabsread.c221 static struct type **type_vector; variable
284 type_vector = XNEWVEC (struct type *, type_vector_length); in dbx_lookup_type()
290 type_vector = (struct type **) in dbx_lookup_type()
291 xrealloc ((char *) type_vector, in dbx_lookup_type()
293 memset (&type_vector[old_len], 0, in dbx_lookup_type()
296 return (&type_vector[index]); in dbx_lookup_type()
4647 type_vector = (struct type **) 0; in start_stabs()
4659 if (type_vector) in end_stabs()
4661 xfree (type_vector); in end_stabs()
4663 type_vector = 0; in end_stabs()
DChangeLog-3.x4690 * coffread.c: (coff_lookup_type) Wrong portion of type_vector was
DChangeLog-20134612 * coffread.c (type_vector,type_vector_length): Moved here from
4619 * stabsread.c (type_vector,type_vector_length): Moved here from
DChangeLog-19912413 (read_coff_symtab): Ditto for type_vector.
DChangeLog-19925347 type_vector, and type_vector_length as these are now
DChangeLog-19936917 Previously, would bogusly index off the bottom of type_vector.