Searched refs:LG_CKH_BUCKET_CELLS (Results 1 - 2 of 2) sorted by relevance

/external/jemalloc/src/
H A Dckh.c58 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/
H A Dckh.h17 * 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) macro
52 * 2^LG_CKH_BUCKET_CELLS cells per bucket.

Completed in 450 milliseconds