Searched refs:type_vector_length (Results 1 – 3 of 3) sorted by relevance
316 if (index >= type_vector_length) in coff_lookup_type()318 int old_vector_length = type_vector_length; in coff_lookup_type()320 type_vector_length *= 2; in coff_lookup_type()321 if (index /* is still */ >= type_vector_length) in coff_lookup_type()322 type_vector_length = index * 2; in coff_lookup_type()326 type_vector_length * sizeof (struct type *)); in coff_lookup_type()328 (type_vector_length - old_vector_length) * sizeof (struct type *)); in coff_lookup_type()730 type_vector_length = 160; in coff_symtab_read()732 xmalloc (type_vector_length * sizeof (struct type *)); in coff_symtab_read()733 memset (type_vector, 0, type_vector_length * sizeof (struct type *)); in coff_symtab_read()
254 if (index >= type_vector_length) in dbx_lookup_type()256 old_len = type_vector_length; in dbx_lookup_type()259 type_vector_length = INITIAL_TYPE_VECTOR_LENGTH; in dbx_lookup_type()261 xmalloc (type_vector_length * sizeof (struct type *)); in dbx_lookup_type()263 while (index >= type_vector_length) in dbx_lookup_type()265 type_vector_length *= 2; in dbx_lookup_type()269 (type_vector_length * sizeof (struct type *))); in dbx_lookup_type()271 (type_vector_length - old_len) * sizeof (struct type *)); in dbx_lookup_type()4389 type_vector_length = 0; in start_stabs()4406 type_vector_length = 0; in end_stabs()
220 EXTERN int type_vector_length; variable