Searched refs:heapsize (Results 1 - 4 of 4) sorted by relevance

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

Completed in 225 milliseconds