Home
last modified time | relevance | path

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

/freebsd-13.1/stand/libsa/
H A Dsbrk.c38 static size_t maxheap, heapsize = 0; variable
58 if ((heapsize + incr) <= maxheap) { in sbrk()
59 ret = (char *)heapbase + heapsize; in sbrk()
61 heapsize += incr; in sbrk()
/freebsd-13.1/stand/efi/loader/
H A Defi_main.c37 static UINTN heapsize; variable
43 BS->FreePages(heap, EFI_SIZE_TO_PAGES(heapsize)); in efi_exit()
95 heapsize = 64 * 1024 * 1024; in efi_main()
97 EFI_SIZE_TO_PAGES(heapsize), &heap); in efi_main()
103 setheap((void *)(uintptr_t)heap, (void *)(uintptr_t)(heap + heapsize)); in efi_main()
/freebsd-13.1/stand/efi/boot1/
H A Dboot1.c57 static UINTN heapsize; variable
170 heapsize = 64 * 1024 * 1024; in efi_main()
172 EFI_SIZE_TO_PAGES(heapsize), &heap); in efi_main()
180 setheap((void *)(uintptr_t)heap, (void *)(uintptr_t)(heap + heapsize)); in efi_main()
278 BS->FreePages(heap, EFI_SIZE_TO_PAGES(heapsize)); in efi_exit()
/freebsd-13.1/stand/powerpc/kboot/
H A Dmain.c255 const size_t heapsize = 15*1024*1024; in main() local
261 heapbase = host_getmem(heapsize); in main()
262 setheap(heapbase, heapbase + heapsize); in main()
/freebsd-13.1/contrib/tcsh/
H A DFixes459 71. Add support for "limit heapsize" (Martin Kraemer)