Lines Matching defs:_cups_array_s
37 struct _cups_array_s /**** CUPS array structure ****/ struct
46 int num_elements, /* Number of array elements */
47 alloc_elements, /* Allocated array elements */
48 current, /* Current element */
49 insert, /* Last inserted element */
50 unique, /* Are all elements unique? */
51 num_saved, /* Number of saved elements */
52 saved[_CUPS_MAXSAVE];
54 void **elements; /* Array elements */
55 cups_array_func_t compare; /* Element comparison function */
56 void *data; /* User data passed to compare */
57 cups_ahash_func_t hashfunc; /* Hash function */
58 int hashsize, /* Size of hash */
59 *hash; /* Hash array */
60 cups_acopy_func_t copyfunc; /* Copy function */
61 cups_afree_func_t freefunc; /* Free function */