Home
last modified time | relevance | path

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

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