Home
last modified time | relevance | path

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

/external/u-boot/common/
Ddlmalloc.c358 #define MINSIZE (sizeof(struct malloc_chunk)) macro
369 (long)(MINSIZE + MALLOC_ALIGN_MASK)) ? MINSIZE : \
764 if ((long)sz >= (long)MINSIZE)
807 assert(chunksize(next) >= MINSIZE);
826 assert((long)sz >= (long)MINSIZE);
829 assert(room < (long)MINSIZE);
1080 INTERNAL_SIZE_T sbrk_size = nb + top_pad + MINSIZE;
1143 if (old_top_size < MINSIZE)
1157 if (old_top_size >= MINSIZE)
1311 if (remainder_size >= (long)MINSIZE) /* too big */
[all …]
Ddlmalloc.src1220 become less than MINSIZE bytes long, it is replenished via
1277 #define MINSIZE (sizeof(struct malloc_chunk))
1288 (long)(MINSIZE + MALLOC_ALIGN_MASK)) ? MINSIZE : \
1629 if ((long)sz >= (long)MINSIZE)
1672 assert(chunksize(next) >= MINSIZE);
1691 assert((long)sz >= (long)MINSIZE);
1694 assert(room < (long)MINSIZE);
1945 INTERNAL_SIZE_T sbrk_size = nb + top_pad + MINSIZE;
2008 if (old_top_size < MINSIZE)
2022 if (old_top_size >= MINSIZE)
[all …]
/external/python/cpython3/Lib/test/
Dtest_ordered_dict.py504 MINSIZE = 8
505 i = (hash & MINSIZE-1)