Home
last modified time | relevance | path

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

/external/libcups/cups/
Darray.c47 alloc_elements, /* Allocated array elements */ member
340 if (a->alloc_elements) in cupsArrayDelete()
424 da->alloc_elements = a->num_elements; in cupsArrayDup()
1033 if (a->num_elements >= a->alloc_elements) in cups_array_add()
1045 if (a->alloc_elements == 0) in cups_array_add()
1052 if (a->alloc_elements < 1024) in cups_array_add()
1053 count = a->alloc_elements * 2; in cups_array_add()
1055 count = a->alloc_elements + 1024; in cups_array_add()
1068 a->alloc_elements = count; in cups_array_add()