Home | History | Annotate | Download | only in stdlib

Lines Matching refs:SMALLBIN_SHIFT

2015 #define SMALLBIN_SHIFT    (3U)
2016 #define SMALLBIN_WIDTH (SIZE_T_ONE << SMALLBIN_SHIFT)
2237 #define is_small(s) (((s) >> SMALLBIN_SHIFT) < NSMALLBINS)
2238 #define small_index(s) ((s) >> SMALLBIN_SHIFT)
2239 #define small_index2size(i) ((i) << SMALLBIN_SHIFT)