Lines Matching refs:SMALLBIN_SHIFT
2005 #define SMALLBIN_SHIFT (3U)2006 #define SMALLBIN_WIDTH (SIZE_T_ONE << SMALLBIN_SHIFT)2227 #define is_small(s) (((s) >> SMALLBIN_SHIFT) < NSMALLBINS)2228 #define small_index(s) ((s) >> SMALLBIN_SHIFT)2229 #define small_index2size(i) ((i) << SMALLBIN_SHIFT)