Symbol: bucket
headers/private/util/MultiHashTable.h
166
ValueType *bucket = HashTable::fTable[i];
headers/private/util/MultiHashTable.h
167
while (bucket) {
headers/private/util/MultiHashTable.h
168
ValueType *next = HashTable::_Link(bucket);
headers/private/util/MultiHashTable.h
169
_Insert(newTable, newSize, bucket);
headers/private/util/MultiHashTable.h
170
bucket = next;
headers/private/util/OpenHashTable.h
452
ValueType* bucket = fTable[i];
headers/private/util/OpenHashTable.h
453
while (bucket) {
headers/private/util/OpenHashTable.h
454
ValueType* next = _Link(bucket);
headers/private/util/OpenHashTable.h
455
_Insert(newTable, newSize, bucket);
headers/private/util/OpenHashTable.h
456
bucket = next;
headers/private/util/OpenHashTable.h
471
ValueType*& _Link(ValueType* bucket) const
headers/private/util/OpenHashTable.h
473
return fDefinition.GetLink(bucket);
headers/private/util/OpenHashTable.h
479
ValueType* bucket = fTable[i];
headers/private/util/OpenHashTable.h
480
while (bucket) {
headers/private/util/OpenHashTable.h
481
if (bucket == value)
headers/private/util/OpenHashTable.h
483
bucket = _Link(bucket);
src/libs/compat/freebsd_wlan/net80211/ieee80211_rssadapt.c
261
thrs = &ra->ra_rate_thresh[bucket(pktlen)];
src/libs/compat/freebsd_wlan/net80211/ieee80211_rssadapt.c
294
thrs = &ra->ra_rate_thresh[bucket(pktlen)];
src/libs/compat/freebsd_wlan/net80211/ieee80211_rssadapt.c
314
thrs = &ra->ra_rate_thresh[bucket(pktlen)];
src/system/kernel/elf.cpp
1422
uint32 bucket;
src/system/kernel/elf.cpp
1423
if (!_Read(&hashBuckets[i], bucket))
src/system/kernel/elf.cpp
1426
for (uint32 j = bucket; j != STN_UNDEF;
src/system/kernel/fs/Vnode.cpp
36
Bucket& bucket = _Bucket();
src/system/kernel/fs/Vnode.cpp
37
MutexLocker bucketLocker(bucket.lock);
src/system/kernel/fs/Vnode.cpp
50
bucket.waiters.Add(&waiter);
src/system/kernel/fs/Vnode.cpp
63
Bucket& bucket = _Bucket();
src/system/kernel/fs/Vnode.cpp
64
MutexLocker bucketLocker(bucket.lock);
src/system/kernel/fs/Vnode.cpp
72
for (LockWaiterList::Iterator it = bucket.waiters.GetIterator();
src/system/libroot/posix/malloc/openbsd/malloc.c
1024
init_chunk_info(struct dir_info *d, struct chunk_info *p, u_int bucket)
src/system/libroot/posix/malloc/openbsd/malloc.c
1028
p->bucket = bucket;
src/system/libroot/posix/malloc/openbsd/malloc.c
1029
p->total = p->free = MALLOC_PAGESIZE / B2ALLOC(bucket);
src/system/libroot/posix/malloc/openbsd/malloc.c
1040
alloc_chunk_info(struct dir_info *d, u_int bucket)
src/system/libroot/posix/malloc/openbsd/malloc.c
1044
if (LIST_EMPTY(&d->chunk_info_list[bucket])) {
src/system/libroot/posix/malloc/openbsd/malloc.c
1049
count = MALLOC_PAGESIZE / B2ALLOC(bucket);
src/system/libroot/posix/malloc/openbsd/malloc.c
1058
if (mopts.chunk_canaries && bucket > 0)
src/system/libroot/posix/malloc/openbsd/malloc.c
1080
LIST_INSERT_HEAD(&d->chunk_info_list[bucket], p,
src/system/libroot/posix/malloc/openbsd/malloc.c
1084
p = LIST_FIRST(&d->chunk_info_list[bucket]);
src/system/libroot/posix/malloc/openbsd/malloc.c
1087
init_chunk_info(d, p, bucket);
src/system/libroot/posix/malloc/openbsd/malloc.c
1095
omalloc_make_chunks(struct dir_info *d, u_int bucket, u_int listnum)
src/system/libroot/posix/malloc/openbsd/malloc.c
1110
B2ALLOC(bucket));
src/system/libroot/posix/malloc/openbsd/malloc.c
1114
if (bucket == 0 && mprotect(pp, MALLOC_PAGESIZE, PROT_NONE) == -1)
src/system/libroot/posix/malloc/openbsd/malloc.c
1117
bp = alloc_chunk_info(d, bucket);
src/system/libroot/posix/malloc/openbsd/malloc.c
1122
if (insert(d, (void *)((uintptr_t)pp | (bucket + 1)), (uintptr_t)bp,
src/system/libroot/posix/malloc/openbsd/malloc.c
1125
LIST_INSERT_HEAD(&d->chunk_dir[bucket][listnum], bp, entries);
src/system/libroot/posix/malloc/openbsd/malloc.c
1127
if (bucket > 0 && d->malloc_junk != 0)
src/system/libroot/posix/malloc/openbsd/malloc.c
1215
u_int i, j, k, r, bucket, listnum;
src/system/libroot/posix/malloc/openbsd/malloc.c
1224
bucket = find_bucket(size);
src/system/libroot/posix/malloc/openbsd/malloc.c
1230
if ((bp = LIST_FIRST(&d->chunk_dir[bucket][listnum])) == NULL) {
src/system/libroot/posix/malloc/openbsd/malloc.c
1231
bp = omalloc_make_chunks(d, bucket, listnum);
src/system/libroot/posix/malloc/openbsd/malloc.c
1236
if (bp->canary != (u_short)d->canary1 || bucket != bp->bucket)
src/system/libroot/posix/malloc/openbsd/malloc.c
1281
p = (char *)bp->page + k * B2ALLOC(bucket);
src/system/libroot/posix/malloc/openbsd/malloc.c
1282
if (bucket > 0) {
src/system/libroot/posix/malloc/openbsd/malloc.c
1283
validate_junk(d, p, B2SIZE(bucket));
src/system/libroot/posix/malloc/openbsd/malloc.c
1285
fill_canary(p, size, B2SIZE(bucket));
src/system/libroot/posix/malloc/openbsd/malloc.c
1320
chunknum = ((uintptr_t)ptr & MALLOC_PAGEMASK) / B2ALLOC(info->bucket);
src/system/libroot/posix/malloc/openbsd/malloc.c
1326
if (check && info->bucket > 0) {
src/system/libroot/posix/malloc/openbsd/malloc.c
1328
B2SIZE(info->bucket));
src/system/libroot/posix/malloc/openbsd/malloc.c
1353
mp = &d->chunk_dir[info->bucket][listnum];
src/system/libroot/posix/malloc/openbsd/malloc.c
1363
if (info->bucket == 0 && !mopts.malloc_freeunmap)
src/system/libroot/posix/malloc/openbsd/malloc.c
1374
mp = &d->chunk_info_list[info->bucket];
src/system/libroot/posix/malloc/openbsd/malloc.c
1751
if (B2SIZE(info->bucket) != sz)
src/system/libroot/posix/malloc/openbsd/malloc.c
2009
fill_canary(p, newsz, B2SIZE(info->bucket));
src/system/libroot/posix/malloc/openbsd/malloc.c
234
u_short bucket;
src/system/libroot/posix/malloc/openbsd/malloc.c
2728
B2SIZE(p->bucket), p->free, p->total);
src/system/libroot/posix/malloc/openbsd/malloc.c
2730
size_t i, sz = B2SIZE(p->bucket);
src/system/runtime_loader/elf_symbol_lookup.cpp
213
const uint32 bucket = image->gnuhash.buckets[lookupInfo.gnuhash % image->gnuhash.bucket_count];
src/system/runtime_loader/elf_symbol_lookup.cpp
214
if (bucket == 0)
src/system/runtime_loader/elf_symbol_lookup.cpp
219
const uint32* hashValue = &chain0[bucket];
src/system/runtime_loader/elf_symbol_lookup.cpp
243
uint32 bucket = lookupInfo.hash % HASHTABSIZE(image);
src/system/runtime_loader/elf_symbol_lookup.cpp
244
for (uint32 symIndex = HASHBUCKETS(image)[bucket]; symIndex != STN_UNDEF;
src/system/runtime_loader/runtime_loader.cpp
592
uint32 bucket = elf_hash(name) % symbolHashSize;
src/system/runtime_loader/runtime_loader.cpp
594
for (uint32 i = symbolHash[bucket + 2]; i < symbolCount && i != STN_UNDEF;
src/tests/kits/locale/collatorTest.cpp
72
uint32 bucket = 1;
src/tests/kits/locale/collatorTest.cpp
77
printf("\n%2lu)", bucket++);
src/tests/kits/locale/collatorTest.cpp
95
printf("%2lu)", bucket++);
src/tools/fs_shell/OpenHashTable.h
452
ValueType* bucket = fTable[i];
src/tools/fs_shell/OpenHashTable.h
453
while (bucket) {
src/tools/fs_shell/OpenHashTable.h
454
ValueType* next = _Link(bucket);
src/tools/fs_shell/OpenHashTable.h
455
_Insert(newTable, newSize, bucket);
src/tools/fs_shell/OpenHashTable.h
456
bucket = next;
src/tools/fs_shell/OpenHashTable.h
471
ValueType*& _Link(ValueType* bucket) const
src/tools/fs_shell/OpenHashTable.h
473
return fDefinition.GetLink(bucket);
src/tools/fs_shell/OpenHashTable.h
479
ValueType* bucket = fTable[i];
src/tools/fs_shell/OpenHashTable.h
480
while (bucket) {
src/tools/fs_shell/OpenHashTable.h
481
if (bucket == value)
src/tools/fs_shell/OpenHashTable.h
483
bucket = _Link(bucket);
src/tools/fs_shell/hash.cpp
156
uint32_t index = iterator->bucket;
src/tools/fs_shell/hash.cpp
265
iterator->bucket = -1;
src/tools/fs_shell/hash.cpp
277
for (index = (uint32_t)(iterator->bucket + 1); index < table->table_size; index++) {
src/tools/fs_shell/hash.cpp
279
iterator->bucket = index;
src/tools/fs_shell/hash.h
16
int bucket;