Home
last modified time | relevance | path

Searched refs:lg_mincells (Results 1 – 1 of 1) sorted by relevance

/external/jemalloc/src/
Dckh.c355 unsigned lg_mincells; in ckh_new() local
380 for (lg_mincells = LG_CKH_BUCKET_CELLS; in ckh_new()
381 (ZU(1) << lg_mincells) < mincells; in ckh_new()
382 lg_mincells++) in ckh_new()
384 ckh->lg_minbuckets = lg_mincells - LG_CKH_BUCKET_CELLS; in ckh_new()
385 ckh->lg_curbuckets = lg_mincells - LG_CKH_BUCKET_CELLS; in ckh_new()
389 usize = sa2u(sizeof(ckhc_t) << lg_mincells, CACHELINE); in ckh_new()