Home
last modified time | relevance | path

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

/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dbit_util.h229 #define LG_FLOOR_32(x) (x < (1ULL << 16) ? LG_FLOOR_16(x) : 16 + LG_FLOOR_16(x >> 16)) macro
230 #define LG_FLOOR_64(x) (x < (1ULL << 32) ? LG_FLOOR_32(x) : 32 + LG_FLOOR_32(x >> 32))
232 # define LG_FLOOR(x) LG_FLOOR_32((x))