Searched defs:items (Results 1 - 2 of 2) sorted by relevance

/bind-9.6-ESV-R11/contrib/nslint-2.1a3/
H A Dnslint.c121 struct item items[ITEMSIZE]; variable in typeref:struct:item
122 int itemcnt; /* count of items */
1677 ip = &items[i & (ITEMSIZE - 1)];
1703 if (ip >= &items[ITEMSIZE])
1704 ip = items;
1795 for (n = 0, ip = items; n < ITEMSIZE; ++n, ++ip) {
2012 printf("%s: %d/%d items used, %d error%s\n", prog, itemcnt,
/bind-9.6-ESV-R11/lib/isc/
H A Dmem.c180 element *items; /*%< low water item list */ member in struct:isc_mempool
182 unsigned int maxalloc; /*%< max number of items allowed */
183 unsigned int allocated; /*%< # of items currently given out */
184 unsigned int freecount; /*%< # of items on reserved list */
185 unsigned int freemax; /*%< # of items allowed on free list */
186 unsigned int fillcount; /*%< # of items to fetch on each fill */
1663 mpctx->items = NULL;
1721 * Return any items on the free list
1724 while (mpctx->items != NULL) {
1727 item = mpctx->items;
[all...]

Completed in 25 milliseconds