Home
last modified time | relevance | path

Searched refs:alloc_elements (Results 1 – 1 of 1) sorted by relevance

/external/libcups/cups/
Darray.c41 alloc_elements, /* Allocated array elements */ member
334 if (a->alloc_elements) in cupsArrayDelete()
418 da->alloc_elements = a->num_elements; in cupsArrayDup()
1027 if (a->num_elements >= a->alloc_elements) in cups_array_add()
1039 if (a->alloc_elements == 0) in cups_array_add()
1046 if (a->alloc_elements < 1024) in cups_array_add()
1047 count = a->alloc_elements * 2; in cups_array_add()
1049 count = a->alloc_elements + 1024; in cups_array_add()
1062 a->alloc_elements = count; in cups_array_add()