HomeSort by relevance Sort by last modified time
    Searched refs:new_allocated (Results 1 - 6 of 6) sorted by null

  /external/valgrind/coregrind/m_demangle/
dyn-string.c 154 int new_allocated = ds->allocated; local
160 while (space > new_allocated)
161 new_allocated *= 2;
163 if (new_allocated != ds->allocated)
165 ds->allocated = new_allocated;
  /toolchain/binutils/binutils-2.25/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;
  /external/dbus/dbus/
dbus-string.c 259 int new_allocated; local
267 new_allocated = real->len + _DBUS_STRING_ALLOCATION_PADDING;
269 new_str = dbus_realloc (real->str - real->align_offset, new_allocated);
274 real->allocated = new_allocated;
312 int new_allocated; local
319 new_allocated = _DBUS_STRING_MAX_LENGTH + _DBUS_STRING_ALLOCATION_PADDING;
321 new_allocated = real->allocated * 2;
333 new_allocated = 0; /* ensure a realloc every time so that we go
340 new_allocated = MAX (new_allocated,
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer.cc 126 unsigned int new_allocated = allocated; local
134 while (size >= new_allocated)
135 new_allocated += (new_allocated >> 1) + 32;
138 if (unlikely (_hb_unsigned_int_mul_overflows (new_allocated, sizeof (info[0]))))
141 new_pos = (hb_glyph_position_t *) realloc (pos, new_allocated * sizeof (pos[0]));
142 new_info = (hb_glyph_info_t *) realloc (info, new_allocated * sizeof (info[0]));
156 allocated = new_allocated;
    [all...]
hb-private.hh 392 unsigned int new_allocated = allocated + (allocated >> 1) + 8; local
396 new_array = (Type *) calloc (new_allocated, sizeof (Type));
400 bool overflows = (new_allocated < allocated) || _hb_unsigned_int_mul_overflows (new_allocated, sizeof (Type));
402 new_array = (Type *) realloc (array, new_allocated * sizeof (Type));
410 allocated = new_allocated;
  /toolchain/binutils/binutils-2.25/bfd/
elf32-xtensa.c 6471 unsigned new_allocated, i; local
    [all...]

Completed in 105 milliseconds