Home
last modified time | relevance | path

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

/utopia/UTPA2-700.0.x/modules/msos/msos/ucos/
H A Ddlmalloc.c2019 #define SMALLBIN_SHIFT (3U) macro
2020 #define SMALLBIN_WIDTH (SIZE_T_ONE << SMALLBIN_SHIFT)
2241 #define is_small(s) (((s) >> SMALLBIN_SHIFT) < NSMALLBINS)
2242 #define small_index(s) ((s) >> SMALLBIN_SHIFT)
2243 #define small_index2size(i) ((i) << SMALLBIN_SHIFT)
/utopia/UTPA2-700.0.x/modules/msos/msos/linux/
H A Ddlmalloc.c2529 #define SMALLBIN_SHIFT (3U) macro
2530 #define SMALLBIN_WIDTH (SIZE_T_ONE << SMALLBIN_SHIFT)
2773 #define is_small(s) (((s) >> SMALLBIN_SHIFT) < NSMALLBINS)
2774 #define small_index(s) ((s) >> SMALLBIN_SHIFT)
2775 #define small_index2size(i) ((i) << SMALLBIN_SHIFT)