Lines Matching refs:SMALLBIN_SHIFT
2440 #define SMALLBIN_SHIFT (3U) 2441 #define SMALLBIN_WIDTH (SIZE_T_ONE << SMALLBIN_SHIFT) 2683 #define is_small(s) (((s) >> SMALLBIN_SHIFT) < NSMALLBINS) 2684 #define small_index(s) ((s) >> SMALLBIN_SHIFT) 2685 #define small_index2size(i) ((i) << SMALLBIN_SHIFT)