Home
last modified time | relevance | path

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

/freebsd/contrib/jemalloc/src/
H A Dckh.c364 unsigned lg_mincells; in ckh_new() local
389 for (lg_mincells = LG_CKH_BUCKET_CELLS; in ckh_new()
390 (ZU(1) << lg_mincells) < mincells; in ckh_new()
391 lg_mincells++) { in ckh_new()
394 ckh->lg_minbuckets = lg_mincells - LG_CKH_BUCKET_CELLS; in ckh_new()
395 ckh->lg_curbuckets = lg_mincells - LG_CKH_BUCKET_CELLS; in ckh_new()
399 usize = sz_sa2u(sizeof(ckhc_t) << lg_mincells, CACHELINE); in ckh_new()