Home
last modified time | relevance | path

Searched refs:high_heap_base (Results 1 – 6 of 6) sorted by relevance

/freebsd/stand/i386/libi386/
H A Dbiosmem.c37 vm_offset_t memtop, memtop_copyin, high_heap_base; variable
145 if (high_heap_base < smap.base && size >= HEAP_MIN) { in bios_getmem()
146 high_heap_base = smap.base + size - HEAP_MIN; in bios_getmem()
179 high_heap_base = 0; in bios_getmem()
209 memtop = memtop_copyin = high_heap_base; in bios_getmem()
221 high_heap_base = memtop - HEAP_MIN; in bios_getmem()
222 memtop = memtop_copyin = high_heap_base; in bios_getmem()
234 printf("high_heap_base: 0x%llx\n", (unsigned long long)high_heap_base); in command_biosmem()
H A Dlibi386.h119 extern vm_offset_t high_heap_base; /* for use as the heap */
/freebsd/stand/i386/loader/
H A Dmain.c115 heap_top = PTOV(high_heap_base + high_heap_size); in main()
116 heap_bottom = PTOV(high_heap_base); in main()
117 if (high_heap_base < memtop_copyin) in main()
118 memtop_copyin = high_heap_base; in main()
/freebsd/stand/i386/isoboot/
H A Disoboot.c85 static vm_offset_t high_heap_base; variable
164 high_heap_base = smap.base; in bios_getmem()
207 high_heap_base = bios_extmem + 0x100000 - HEAP_MIN; in bios_getmem()
222 heap_end = PTOV(high_heap_base + high_heap_size); in main()
223 heap_next = PTOV(high_heap_base); in main()
/freebsd/stand/i386/gptboot/
H A Dgptboot.c88 static vm_offset_t high_heap_base; variable
181 high_heap_base = smap.base; in bios_getmem()
224 high_heap_base = bios_extmem + 0x100000 - HEAP_MIN; in bios_getmem()
272 heap_end = PTOV(high_heap_base + high_heap_size); in main()
273 heap_next = PTOV(high_heap_base); in main()
/freebsd/stand/i386/zfsboot/
H A Dzfsboot.c118 extern vm_offset_t high_heap_base;
173 heap_top = PTOV(high_heap_base + high_heap_size); in main()
174 heap_bottom = PTOV(high_heap_base); in main()