Searched refs:__list_increment (Results 1 - 2 of 2) sorted by relevance

/opensolaris-onvv-gate/usr/src/lib/print/libpapi-common/common/
H A Dlist.c38 static int __list_increment = 16; variable
40 #define LIST_SIZE(x) ((((x) / __list_increment) + 1) * __list_increment)
54 *list = (void **)calloc(__list_increment,
60 if ((count + 1) % __list_increment == 0) { /* expand the list */
/opensolaris-onvv-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dfncs.c44 static int __list_increment = 16; variable
58 *list = (void **)calloc(__list_increment,
66 if ((count + 1) % __list_increment == 0) { /* expand the list */ void **new_list = NULL;
67 int new_size = (((count + 1) / __list_increment) + 1) *
68 __list_increment;
99 int new_size = (((count + 1) / __list_increment) + 1) *
100 __list_increment;

Completed in 98 milliseconds