Lines Matching full:allocated
29 * // This enlarges the allocated array as needed;
45 unsigned int allocated; \
52 (ARRAY_LIST).allocated = 0; \
57 if ((ARRAY_LIST).len && !(ARRAY_LIST).allocated) { \
62 || (ARRAY_LIST).allocated < (ARRAY_LIST).len + 1) { \
65 (ARRAY_LIST).allocated + \
66 ((ARRAY_LIST).allocated ? \
67 (ARRAY_LIST).allocated / 2 : \
75 (ARRAY_LIST).allocated += \
76 (ARRAY_LIST).allocated ? \
77 (ARRAY_LIST).allocated / 2 : \
84 || (ARRAY_LIST).allocated < (ARRAY_LIST).len + 1) { \
111 if ((ARRAY_LIST).head && (ARRAY_LIST).allocated) \