Lines Matching defs:bucket
70 /* Use one hash table bucket per 16 KB of memory. */
342 /* Finds a stack in a bucket of the hash table. */
343 static inline struct stack_record *find_stack(struct stack_record *bucket,
349 for (found = bucket; found; found = found->next) {
362 struct stack_record *found = NULL, **bucket;
383 bucket = &stack_table[hash & stack_hash_mask];
388 * |bucket| below.
390 found = find_stack(smp_load_acquire(bucket), entries, nr_entries, hash);
417 found = find_stack(*bucket, entries, nr_entries, hash);
423 new->next = *bucket;
426 * smp_load_acquire() from |bucket| above.
428 smp_store_release(bucket, new);