Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/_ctypes/libffi/src/
Ddlmalloc.c1689 #define MIN_CHUNK_SIZE\ macro
1699 #define MAX_REQUEST ((-MIN_CHUNK_SIZE) << 2)
1700 #define MIN_REQUEST (MIN_CHUNK_SIZE - CHUNK_OVERHEAD - SIZE_T_ONE)
1708 (((req) < MIN_REQUEST)? MIN_CHUNK_SIZE : pad_request(req))
2193 (align_offset(chunk2mem(0))+pad_request(sizeof(struct malloc_segment))+MIN_CHUNK_SIZE)
2292 #define MIN_SMALL_INDEX (small_index(MIN_CHUNK_SIZE))
2582 (MAX_SIZE_T < MIN_CHUNK_SIZE) || in init_mparams()
2674 if (sz >= MIN_CHUNK_SIZE) { in do_check_free_chunk()
2695 assert(sz >= MIN_CHUNK_SIZE); in do_check_malloced_chunk()
2698 assert(is_mmapped(p) || sz < (s + MIN_CHUNK_SIZE)); in do_check_malloced_chunk()
[all …]
/external/libffi/src/
Ddlmalloc.c1684 #define MIN_CHUNK_SIZE\ macro
1694 #define MAX_REQUEST ((-MIN_CHUNK_SIZE) << 2)
1695 #define MIN_REQUEST (MIN_CHUNK_SIZE - CHUNK_OVERHEAD - SIZE_T_ONE)
1703 (((req) < MIN_REQUEST)? MIN_CHUNK_SIZE : pad_request(req))
2188 (align_offset(chunk2mem(0))+pad_request(sizeof(struct malloc_segment))+MIN_CHUNK_SIZE)
2287 #define MIN_SMALL_INDEX (small_index(MIN_CHUNK_SIZE))
2577 (MAX_SIZE_T < MIN_CHUNK_SIZE) || in init_mparams()
2669 if (sz >= MIN_CHUNK_SIZE) { in do_check_free_chunk()
2690 assert(sz >= MIN_CHUNK_SIZE); in do_check_malloced_chunk()
2693 assert(is_mmapped(p) || sz < (s + MIN_CHUNK_SIZE)); in do_check_malloced_chunk()
[all …]
/external/dlmalloc/
Dmalloc.c2214 #define MIN_CHUNK_SIZE\ macro
2224 #define MAX_REQUEST ((-MIN_CHUNK_SIZE) << 2)
2225 #define MIN_REQUEST (MIN_CHUNK_SIZE - CHUNK_OVERHEAD - SIZE_T_ONE)
2233 (((req) < MIN_REQUEST)? MIN_CHUNK_SIZE : pad_request(req))
2731 (align_offset(chunk2mem(0))+pad_request(sizeof(struct malloc_segment))+MIN_CHUNK_SIZE)
2827 #define MIN_SMALL_INDEX (small_index(MIN_CHUNK_SIZE))
3139 (MAX_SIZE_T < MIN_CHUNK_SIZE) || in init_mparams()
3286 if (sz >= MIN_CHUNK_SIZE) { in do_check_free_chunk()
3307 assert(sz >= MIN_CHUNK_SIZE); in do_check_malloced_chunk()
3310 assert(is_mmapped(p) || sz < (s + MIN_CHUNK_SIZE)); in do_check_malloced_chunk()
[all …]