Home
last modified time | relevance | path

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

/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dbit_util.h154 lg_floor(size_t x) { in lg_floor() function
167 lg_floor(size_t x) { in lg_floor() function
184 lg_floor(size_t x) { in lg_floor() function
197 lg_floor(size_t x) { in lg_floor() function
218 return lg_floor(x) + ((x & (x - 1)) == 0 ? 0 : 1); in lg_ceil()
H A Dsz.h57 pszind_t x = lg_floor((psz<<1)-1); in sz_psz2ind()
111 size_t x = lg_floor((psz<<1)-1); in sz_psz2u()
132 szind_t lg_ceil = lg_floor(pow2_ceil_zu(size)); in sz_size2index_compute()
137 szind_t x = lg_floor((size<<1)-1); in sz_size2index_compute()
222 size_t lg_ceil = lg_floor(pow2_ceil_zu(size)); in sz_s2u_compute()
228 size_t x = lg_floor((size<<1)-1); in sz_s2u_compute()
H A Dextent_inlines.h221 lg_floor(CACHELINE_CEILING(alignment)); in extent_addr_randomize()
/freebsd/contrib/jemalloc/src/
H A Dbackground_thread.c189 assert(n_search++ < lg_floor(SMOOTHSTEP_NSTEPS) + 1);
/freebsd/contrib/jemalloc/
H A DChangeLog969 - Fix fallback lg_floor() implementations to handle extremely large inputs.