HomeSort by: relevance | last modified time | path
    Searched defs:new_allocated (Results 1 - 18 of 18) sorted by relevancy

  /src/external/gpl3/gdb/dist/gnulib/import/
fchdir.c 67 size_t new_allocated; local
70 new_allocated = 2 * dirs_allocated + 1;
71 if (new_allocated <= fd)
72 new_allocated = fd + 1;
75 ? (dir_info_t *) realloc (dirs, new_allocated * sizeof *dirs)
76 : (dir_info_t *) malloc (new_allocated * sizeof *dirs));
80 (new_allocated - dirs_allocated) * sizeof *dirs);
82 dirs_allocated = new_allocated;
  /src/external/gpl3/gdb.old/dist/gnulib/import/
fchdir.c 67 size_t new_allocated; local
70 new_allocated = 2 * dirs_allocated + 1;
71 if (new_allocated <= fd)
72 new_allocated = fd + 1;
75 ? (dir_info_t *) realloc (dirs, new_allocated * sizeof *dirs)
76 : (dir_info_t *) malloc (new_allocated * sizeof *dirs));
80 (new_allocated - dirs_allocated) * sizeof *dirs);
82 dirs_allocated = new_allocated;
  /src/external/gpl3/binutils/dist/libiberty/
dyn-string.c 141 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;
  /src/external/gpl3/binutils.old/dist/libiberty/
dyn-string.c 141 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;
  /src/external/gpl3/gcc/dist/libiberty/
dyn-string.c 141 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;
  /src/external/gpl3/gcc.old/dist/libiberty/
dyn-string.c 141 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;
  /src/external/gpl3/gdb/dist/libiberty/
dyn-string.c 141 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;
  /src/external/gpl3/gdb.old/dist/libiberty/
dyn-string.c 141 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;
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
clean-temp.c 274 size_t new_allocated = 2 * cleanup_list.tempdir_allocated + 1; local
277 xmalloc (new_allocated * sizeof (struct tempdir * volatile));
294 cleanup_list.tempdir_allocated = new_allocated;
  /src/lib/libc/cdb/
cdbw.c 212 size_t new_allocated; local
215 new_allocated = 256;
217 new_allocated = cdbw->data_allocated * 2;
220 sizeof(*cdbw->data_ptr) * new_allocated);
226 sizeof(*cdbw->data_len) * new_allocated);
231 cdbw->data_allocated = new_allocated;
  /src/external/gpl2/gettext/dist/gettext-tools/src/
msgl-fsearch.c 121 size_t new_allocated = 2 * length - (length >> 6); local
122 list = (index_ty *) xrealloc (list, (2 + new_allocated) * sizeof (index_ty));
123 list[IL_ALLOCATED] = new_allocated;
160 size_t new_allocated = 2 * length - (length >> 6); local
161 list = (index_ty *) xrealloc (list, (2 + new_allocated) * sizeof (index_ty));
162 list[IL_ALLOCATED] = new_allocated;
x-csharp.c 539 size_t new_allocated = 2 * bp->utf8_allocated + 10; local
540 if (new_allocated < bp->utf8_buflen + count)
541 new_allocated = bp->utf8_buflen + count;
542 bp->utf8_allocated = new_allocated;
543 bp->utf8_buffer = xrealloc (bp->utf8_buffer, new_allocated);
x-java.c 427 size_t new_allocated = 2 * bp->utf8_allocated + 10; local
428 if (new_allocated < bp->utf8_buflen + count)
429 new_allocated = bp->utf8_buflen + count;
430 bp->utf8_allocated = new_allocated;
431 bp->utf8_buffer = xrealloc (bp->utf8_buffer, new_allocated);
x-python.c 488 size_t new_allocated = 2 * bp->utf8_allocated + 10; local
489 if (new_allocated < bp->utf8_buflen + count)
490 new_allocated = bp->utf8_buflen + count;
491 bp->utf8_allocated = new_allocated;
492 bp->utf8_buffer = xrealloc (bp->utf8_buffer, new_allocated);
830 size_t new_allocated = 2 * bp->utf8_allocated + 10; local
831 if (new_allocated < bp->utf8_buflen + count)
832 new_allocated = bp->utf8_buflen + count;
833 bp->utf8_allocated = new_allocated;
834 bp->utf8_buffer = xrealloc (bp->utf8_buffer, new_allocated);
    [all...]
  /src/external/gpl3/binutils/dist/bfd/
elf32-xtensa.c 6736 unsigned new_allocated, i;
6739 new_allocated = (c->action_count + 2) * 2;
6741 bfd_zmalloc (sizeof (proposed_action) * new_allocated);
6747 c->action_allocated = new_allocated;
6716 unsigned new_allocated, i; local
  /src/external/gpl3/binutils.old/dist/bfd/
elf32-xtensa.c 6736 unsigned new_allocated, i;
6739 new_allocated = (c->action_count + 2) * 2;
6741 bfd_zmalloc (sizeof (proposed_action) * new_allocated);
6747 c->action_allocated = new_allocated;
6716 unsigned new_allocated, i; local
  /src/external/gpl3/gdb/dist/bfd/
elf32-xtensa.c 6734 unsigned new_allocated, i;
6737 new_allocated = (c->action_count + 2) * 2;
6739 bfd_zmalloc (sizeof (proposed_action) * new_allocated);
6745 c->action_allocated = new_allocated;
6714 unsigned new_allocated, i; local
  /src/external/gpl3/gdb.old/dist/bfd/
elf32-xtensa.c 6740 unsigned new_allocated, i;
6743 new_allocated = (c->action_count + 2) * 2;
6745 bfd_zmalloc (sizeof (proposed_action) * new_allocated);
6751 c->action_allocated = new_allocated;
6720 unsigned new_allocated, i; local

Completed in 111 milliseconds