Lines Matching refs:SMALLBIN_SHIFT
2572 #define SMALLBIN_SHIFT (3U)2573 #define SMALLBIN_WIDTH (SIZE_T_ONE << SMALLBIN_SHIFT)2824 #define is_small(s) (((s) >> SMALLBIN_SHIFT) < NSMALLBINS)2825 #define small_index(s) (bindex_t)((s) >> SMALLBIN_SHIFT)2826 #define small_index2size(i) ((i) << SMALLBIN_SHIFT)