Home
last modified time | relevance | path

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

/openbmc/u-boot/common/
H A 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 …]
H A 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 …]
/openbmc/linux/tools/testing/selftests/net/mptcp/
H A Dmptcp_connect.sh619 local MINSIZE=$((1024 * 256))
621 SIZE=$(((RANDOM * RANDOM + MINSIZE) % MAXSIZE))