Searched refs:jemalloc_ffs (Results 1 - 4 of 4) sorted by relevance

/external/jemalloc/include/jemalloc/internal/
H A Dutil.h113 int jemalloc_ffs(int bitmap);
135 jemalloc_ffs(int bitmap) function
204 return (jemalloc_ffs(x) - 2);
H A Darena.h973 shift = jemalloc_ffs(interval) - 1;
/external/jemalloc/src/
H A Drtree.c12 bits_per_level = jemalloc_ffs(pow2_ceil((RTREE_NODESIZE / sizeof(void *)))) - 1;
13 bits_in_leaf = jemalloc_ffs(pow2_ceil((RTREE_NODESIZE / sizeof(uint8_t)))) - 1;
H A Darena.c2490 size_t align_min = ZU(1) << (jemalloc_ffs(bin_info->reg_size) - 1);

Completed in 2388 milliseconds