Searched defs:heapsize (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/boot/lib/libstand/
H A Dsbrk.c38 static size_t maxheap, heapsize = 0; variable
55 if ((heapsize + incr) <= maxheap) {
56 ret = (char *)heapbase + heapsize;
58 heapsize += incr;
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dmallint.h113 #define heapsize() (_ubound - _lbound) macro
/illumos-gate/usr/src/boot/sys/boot/efi/libefi/
H A Dlibefi.c41 static UINTN heapsize; variable
78 BS->FreePages(heap, EFI_SIZE_TO_PAGES(heapsize));
105 heapsize = 64 * 1024 * 1024;
109 EFI_SIZE_TO_PAGES(heapsize), &heap);
113 setheap((void *)(uintptr_t)heap, (void *)(uintptr_t)(heap + heapsize));

Completed in 57 milliseconds