Home
last modified time | relevance | path

Searched refs:heapsize (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/boot/libsa/
H A Dsbrk.c37 static size_t maxheap, heapsize = 0; variable
57 if ((heapsize + incr) <= maxheap) { in sbrk()
58 ret = (char *)heapbase + heapsize; in sbrk()
60 heapsize += incr; in sbrk()
/illumos-gate/usr/src/boot/efi/loader/
H A Defi_main.c34 static UINTN heapsize; variable
41 BS->FreePages(heap, EFI_SIZE_TO_PAGES(heapsize)); in efi_exit()
86 heapsize = 64 * 1024 * 1024; in efi_main()
90 EFI_SIZE_TO_PAGES(heapsize), &heap); in efi_main()
94 setheap((void *)(uintptr_t)heap, (void *)(uintptr_t)(heap + heapsize)); in efi_main()