Home
last modified time | relevance | path

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

/utopia/UTPA2-700.0.x/modules/msos/msos/ucos/
H A Ddlmalloc.c1675 #define MIN_CHUNK_SIZE\
1685 #define MAX_REQUEST ((-MIN_CHUNK_SIZE) << 2)
1686 #define MIN_REQUEST (MIN_CHUNK_SIZE - CHUNK_OVERHEAD - SIZE_T_ONE)
1694 (((req) < MIN_REQUEST)? MIN_CHUNK_SIZE : pad_request(req))
2145 (align_offset(chunk2mem(0))+pad_request(sizeof(struct malloc_segment))+MIN_CHUNK_SIZE)
2244 #define MIN_SMALL_INDEX (small_index(MIN_CHUNK_SIZE))
2535 (MAX_SIZE_T < MIN_CHUNK_SIZE) || in init_mparams()
2630 if (sz >= MIN_CHUNK_SIZE) { in do_check_free_chunk()
2651 assert(sz >= MIN_CHUNK_SIZE); in do_check_malloced_chunk()
2654 assert(is_mmapped(p) || sz < (s + MIN_CHUNK_SIZE)); in do_check_malloced_chunk()
[all …]
H A Ddlmalloc.h90 #define MIN_CHUNK_SIZE\ macro
100 #define MAX_REQUEST ((-MIN_CHUNK_SIZE) << 2)
101 #define MIN_REQUEST (MIN_CHUNK_SIZE - CHUNK_OVERHEAD - SIZE_T_ONE)
109 (((req) < MIN_REQUEST)? MIN_CHUNK_SIZE : pad_request(req))
/utopia/UTPA2-700.0.x/modules/msos/msos/linux/
H A Ddlmalloc.c2177 #define MIN_CHUNK_SIZE\ macro
2187 #define MAX_REQUEST ((-MIN_CHUNK_SIZE) << 2)
2188 #define MIN_REQUEST (MIN_CHUNK_SIZE - CHUNK_OVERHEAD - SIZE_T_ONE)
2196 (((req) < MIN_REQUEST)? MIN_CHUNK_SIZE : pad_request(req))
2680 (align_offset(chunk2mem(0))+pad_request(sizeof(struct malloc_segment))+MIN_CHUNK_SIZE)
2776 #define MIN_SMALL_INDEX (small_index(MIN_CHUNK_SIZE))
3081 (MAX_SIZE_T < MIN_CHUNK_SIZE) || in init_mparams()
3214 if (sz >= MIN_CHUNK_SIZE) { in do_check_free_chunk()
3235 assert(sz >= MIN_CHUNK_SIZE); in do_check_malloced_chunk()
3238 assert(is_mmapped(p) || sz < (s + MIN_CHUNK_SIZE)); in do_check_malloced_chunk()
[all …]