Searched refs:bucket (Results 1 - 11 of 11) sorted by relevance

/haiku/src/system/kernel/fs/
H A DVnode.cpp17 mutex_init(&lock, "vnode bucket");
36 Bucket& bucket = _Bucket(); local
37 MutexLocker bucketLocker(bucket.lock);
50 bucket.waiters.Add(&waiter);
63 Bucket& bucket = _Bucket(); local
64 MutexLocker bucketLocker(bucket.lock);
72 for (LockWaiterList::Iterator it = bucket.waiters.GetIterator();
/haiku/src/tools/fs_shell/
H A DOpenHashTable.h280 // add the bucket to the list
284 // element in the bucket
452 ValueType* bucket = fTable[i]; local
453 while (bucket) {
454 ValueType* next = _Link(bucket);
455 _Insert(newTable, newSize, bucket);
456 bucket = next;
471 ValueType*& _Link(ValueType* bucket) const
473 return fDefinition.GetLink(bucket);
479 ValueType* bucket local
[all...]
H A Dhash.h16 int bucket; member in struct:FSShell::hash_iterator
H A Dhash.cpp156 uint32_t index = iterator->bucket;
265 iterator->bucket = -1;
276 // get next bucket
277 for (index = (uint32_t)(iterator->bucket + 1); index < table->table_size; index++) {
279 iterator->bucket = index;
/haiku/headers/private/kernel/util/
H A DOpenHashTable.h280 // add the bucket to the list
284 // element in the bucket
452 ValueType* bucket = fTable[i]; local
453 while (bucket) {
454 ValueType* next = _Link(bucket);
455 _Insert(newTable, newSize, bucket);
456 bucket = next;
471 ValueType*& _Link(ValueType* bucket) const
473 return fDefinition.GetLink(bucket);
479 ValueType* bucket local
[all...]
H A DMultiHashTable.h166 ValueType *bucket = HashTable::fTable[i]; local
167 while (bucket) {
168 ValueType *next = HashTable::_Link(bucket);
169 _Insert(newTable, newSize, bucket);
170 bucket = next;
/haiku/src/tests/kits/locale/
H A DcollatorTest.cpp72 uint32 bucket = 1; local
77 printf("\n%2lu)", bucket++);
95 printf("%2lu)", bucket++);
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_rssadapt.c222 bucket(int pktlen) function
258 thrs = &ra->ra_rate_thresh[bucket(pktlen)];
290 thrs = &ra->ra_rate_thresh[bucket(pktlen)];
310 thrs = &ra->ra_rate_thresh[bucket(pktlen)];
/haiku/src/system/runtime_loader/
H A Delf_symbol_lookup.cpp116 uint32 bucket = lookupInfo.hash % HASHTABSIZE(image); local
118 for (uint32 i = HASHBUCKETS(image)[bucket]; i != STN_UNDEF;
H A Druntime_loader.cpp592 uint32 bucket = elf_hash(name) % symbolHashSize; local
594 for (uint32 i = symbolHash[bucket + 2]; i < symbolCount && i != STN_UNDEF;
/haiku/src/system/kernel/
H A Delf.cpp1433 uint32 bucket; local
1434 if (!_Read(&hashBuckets[i], bucket))
1437 for (uint32 j = bucket; j != STN_UNDEF;

Completed in 95 milliseconds