Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/_ctypes/libffi/src/
Ddlmalloc.c2067 #define SMALLBIN_SHIFT (3U) macro
2068 #define SMALLBIN_WIDTH (SIZE_T_ONE << SMALLBIN_SHIFT)
2289 #define is_small(s) (((s) >> SMALLBIN_SHIFT) < NSMALLBINS)
2290 #define small_index(s) ((s) >> SMALLBIN_SHIFT)
2291 #define small_index2size(i) ((i) << SMALLBIN_SHIFT)
/external/libffi/src/
Ddlmalloc.c2062 #define SMALLBIN_SHIFT (3U) macro
2063 #define SMALLBIN_WIDTH (SIZE_T_ONE << SMALLBIN_SHIFT)
2284 #define is_small(s) (((s) >> SMALLBIN_SHIFT) < NSMALLBINS)
2285 #define small_index(s) ((s) >> SMALLBIN_SHIFT)
2286 #define small_index2size(i) ((i) << SMALLBIN_SHIFT)
/external/dlmalloc/
Dmalloc.c2572 #define SMALLBIN_SHIFT (3U) macro
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)