Home
last modified time | relevance | path

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

/openbmc/qemu/block/
H A Dcommit.c266 int64_t base_size, top_size; in commit_start() local
287 top_size = bdrv_getlength(top); in commit_start()
288 if (top_size < 0) { in commit_start()
289 error_setg_errno(errp, -top_size, "Could not inquire top image size"); in commit_start()
294 if (base_size < top_size) { in commit_start()
/openbmc/u-boot/common/
H A Ddlmalloc.c1072 INTERNAL_SIZE_T top_size; /* new size of top chunk */ local
1101 top_size = sbrk_size + old_top_size;
1102 set_head(top, top_size | PREV_INUSE);
1133 top_size = new_brk - brk + correction;
1134 set_head(top, top_size | PREV_INUSE);
2169 long top_size; /* Amount of top-most memory */ local
2176 top_size = chunksize(top);
2186 if (current_brk != (char*)(top) + top_size)
2197 top_size = current_brk - (char*)top;
2201 set_head(top, top_size | PREV_INUSE);
[all …]
H A Ddlmalloc.src1937 INTERNAL_SIZE_T top_size; /* new size of top chunk */
1966 top_size = sbrk_size + old_top_size;
1967 set_head(top, top_size | PREV_INUSE);
1998 top_size = new_brk - brk + correction;
1999 set_head(top, top_size | PREV_INUSE);
2948 long top_size; /* Amount of top-most memory */
2955 top_size = chunksize(top);
2965 if (current_brk != (char*)(top) + top_size)
2976 top_size = current_brk - (char*)top;
2980 set_head(top, top_size | PREV_INUSE);
[all …]