Searched refs:heap_start (Results 1 – 5 of 5) sorted by relevance
/netbsd-src/sys/stand/efiboot/ |
H A D | efiboot.c | 58 static EFI_PHYSICAL_ADDRESS heap_start; variable 78 status = uefi_call_wrapper(BS->AllocatePages, 4, AllocateAnyPages, EfiLoaderData, sz, &heap_start); in efi_main() 81 setheap((void *)(uintptr_t)heap_start, (void *)(uintptr_t)(heap_start + heap_size)); in efi_main()
|
/netbsd-src/sys/arch/i386/stand/efiboot/ |
H A D | efiboot.c | 46 static EFI_PHYSICAL_ADDRESS heap_start = EFI_ALLOCATE_MAX_ADDRESS; variable 156 EfiLoaderData, sz, &heap_start); in efi_heap_init() 160 setheap((void *)(UINTN)heap_start, in efi_heap_init() 161 (void *)(UINTN)(heap_start + heap_size)); in efi_heap_init()
|
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
H A D | sanitizer_allocator_combined.h | 38 void Init(s32 release_to_os_interval_ms, uptr heap_start = 0) { 40 primary_.Init(release_to_os_interval_ms, heap_start);
|
H A D | sanitizer_allocator_primary32.h | 122 void Init(s32 release_to_os_interval_ms, uptr heap_start = 0) { 123 CHECK(!heap_start);
|
H A D | sanitizer_allocator_primary64.h | 114 void Init(s32 release_to_os_interval_ms, uptr heap_start = 0) { 116 PremappedHeap = heap_start != 0; 119 NonConstSpaceBeg = heap_start;
|