OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lg_curbuckets
(Results
1 - 2
of
2
) sorted by null
/external/jemalloc/src/
ckh.c
80
bucket = hashes[0] & ((ZU(1) << ckh->
lg_curbuckets
) - 1);
86
bucket = hashes[1] & ((ZU(1) << ckh->
lg_curbuckets
) - 1);
159
tbucket = hashes[1] & ((ZU(1) << ckh->
lg_curbuckets
) - 1);
161
tbucket = hashes[0] & ((ZU(1) << ckh->
lg_curbuckets
)
203
bucket = hashes[0] & ((ZU(1) << ckh->
lg_curbuckets
) - 1);
208
bucket = hashes[1] & ((ZU(1) << ckh->
lg_curbuckets
) - 1);
262
lg_prevbuckets = ckh->
lg_curbuckets
;
263
lg_curcells = ckh->
lg_curbuckets
+ LG_CKH_BUCKET_CELLS;
282
ckh->
lg_curbuckets
= lg_curcells - LG_CKH_BUCKET_CELLS;
292
ckh->
lg_curbuckets
= lg_prevbuckets
[
all
...]
/external/jemalloc/include/jemalloc/internal/
ckh.h
55
unsigned
lg_curbuckets
;
member in struct:ckh_s
61
/* Hash table with 2^
lg_curbuckets
buckets. */
Completed in 81 milliseconds