Home
last modified time | relevance | path

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

/external/jemalloc_new/src/
Dckh.c363 unsigned lg_mincells; in ckh_new() local
388 for (lg_mincells = LG_CKH_BUCKET_CELLS; in ckh_new()
389 (ZU(1) << lg_mincells) < mincells; in ckh_new()
390 lg_mincells++) { in ckh_new()
393 ckh->lg_minbuckets = lg_mincells - LG_CKH_BUCKET_CELLS; in ckh_new()
394 ckh->lg_curbuckets = lg_mincells - LG_CKH_BUCKET_CELLS; in ckh_new()
398 usize = sz_sa2u(sizeof(ckhc_t) << lg_mincells, CACHELINE); in ckh_new()