OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LG_CKH_BUCKET_CELLS
(Results
1 - 2
of
2
) sorted by null
/external/jemalloc/src/
ckh.c
58
for (i = 0; i < (ZU(1) <<
LG_CKH_BUCKET_CELLS
); i++) {
59
cell = &ckh->tab[(bucket <<
LG_CKH_BUCKET_CELLS
) + i];
61
return ((bucket <<
LG_CKH_BUCKET_CELLS
) + i);
102
prng32(offset,
LG_CKH_BUCKET_CELLS
, ckh->prng_state, CKH_A, CKH_C);
103
for (i = 0; i < (ZU(1) <<
LG_CKH_BUCKET_CELLS
); i++) {
104
cell = &ckh->tab[(bucket <<
LG_CKH_BUCKET_CELLS
) +
105
((i + offset) & ((ZU(1) <<
LG_CKH_BUCKET_CELLS
) - 1))];
144
prng32(i,
LG_CKH_BUCKET_CELLS
, ckh->prng_state, CKH_A, CKH_C);
145
cell = &ckh->tab[(bucket <<
LG_CKH_BUCKET_CELLS
) + i];
263
lg_curcells = ckh->lg_curbuckets +
LG_CKH_BUCKET_CELLS
;
[
all
...]
/external/jemalloc/include/jemalloc/internal/
ckh.h
17
* There are 2^
LG_CKH_BUCKET_CELLS
cells in each hash table bucket. Try to fit
20
#define
LG_CKH_BUCKET_CELLS
(LG_CACHELINE - LG_SIZEOF_PTR - 1)
52
* 2^
LG_CKH_BUCKET_CELLS
cells per bucket.
Completed in 102 milliseconds