Searched refs:new_allocated (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dfchdir.c55 size_t new_allocated; local
59 new_allocated = 2 * dirs_allocated + 1;
60 if (new_allocated <= fd)
61 new_allocated = fd + 1;
64 ? (dir_info_t *) realloc (dirs, new_allocated * sizeof (dir_info_t))
65 : (dir_info_t *) malloc (new_allocated * sizeof (dir_info_t)));
68 for (i = dirs_allocated; i < new_allocated; i++)
74 dirs_allocated = new_allocated;
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Ddyn-string.c141 int new_allocated = ds->allocated; local
147 while (space > new_allocated)
148 new_allocated *= 2;
150 if (new_allocated != ds->allocated)
152 ds->allocated = new_allocated;
/macosx-10.10.1/libauto-186/
H A Dauto_weak.cpp104 usword_t new_allocated = old_num_allocated < WEAK_TABLE_DOUBLE_SIZE ? old_num_allocated + 1 : old_num_allocated + old_num_allocated; local
105 list->refs = (weak_referrer_t *)aux_malloc(new_allocated * sizeof(weak_referrer_t));
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Delf32-xtensa.c5628 unsigned new_allocated, i;
5631 new_allocated = (c->action_count + 2) * 2;
5633 bfd_zmalloc (sizeof (proposed_action) * new_allocated);
5640 c->action_allocated = new_allocated;
5608 unsigned new_allocated, i; local

Completed in 203 milliseconds