HomeSort by relevance Sort by last modified time
    Searched full:want_alloc (Results 1 - 1 of 1) sorted by null

  /external/bluetooth/glib/glib/
garray.c 331 guint want_alloc = g_array_elt_len (array, array->len + len + local
334 if (want_alloc > array->alloc)
336 want_alloc = g_nearest_pow (want_alloc);
337 want_alloc = MAX (want_alloc, MIN_ARRAY_SIZE);
339 array->data = g_realloc (array->data, want_alloc);
342 memset (array->data + array->alloc, 0, want_alloc - array->alloc);
344 array->alloc = want_alloc;

Completed in 54 milliseconds