Lines Matching defs:bucket
73 SLIST_HEAD(bucket, lockstruct);
74 typedef struct bucket bucket_t;
78 SLIST_ENTRY(lockstruct) bucket;
134 static bucket_t bucket[256];
136 #define HASH(a) (&bucket[((a) >> 6) & (__arraycount(bucket) - 1)])
621 for (i = 0; i < __arraycount(bucket); i++) {
622 SLIST_INIT(&bucket[i]);
638 SLIST_FOREACH(l, bp, bucket) {
655 SLIST_INSERT_HEAD(bp, l, bucket);