Home
last modified time | relevance | path

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

/freebsd/stand/libsa/
H A Dsbrk.c35 static size_t maxheap, heapsize = 0; variable
55 if ((heapsize + incr) <= maxheap) { in sbrk()
56 ret = (char *)heapbase + heapsize; in sbrk()
58 heapsize += incr; in sbrk()
/freebsd/stand/efi/loader/
H A Defi_main.c34 static UINTN heapsize; variable
41 BS->FreePages(heap, EFI_SIZE_TO_PAGES(heapsize)); in efi_exit()
96 heapsize = 64 * 1024 * 1024; in efi_main()
98 EFI_SIZE_TO_PAGES(heapsize), &heap); in efi_main()
104 setheap((void *)(uintptr_t)heap, (void *)(uintptr_t)(heap + heapsize)); in efi_main()
/freebsd/stand/efi/boot1/
H A Dboot1.c54 static UINTN heapsize; variable
187 heapsize = 64 * 1024 * 1024; in efi_main()
189 EFI_SIZE_TO_PAGES(heapsize), &heap); in efi_main()
197 setheap((void *)(uintptr_t)heap, (void *)(uintptr_t)(heap + heapsize)); in efi_main()
295 BS->FreePages(heap, EFI_SIZE_TO_PAGES(heapsize)); in efi_exit()
/freebsd/stand/kboot/kboot/
H A Dmain.c326 const size_t heapsize = 64*1024*1024; in main() local
342 heapbase = host_getmem(heapsize); in main()
343 setheap(heapbase, heapbase + heapsize); in main()
/freebsd/contrib/tcsh/
H A DFixes459 71. Add support for "limit heapsize" (Martin Kraemer)