Searched refs:HEAP_MIN (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/stand/pc98/libpc98/
H A Dbiosmem.c43 #define HEAP_MIN (64 * 1024 * 1024) macro
60 if (bios_extmem >= HEAP_MIN) {
61 high_heap_size = HEAP_MIN;
62 high_heap_base = memtop - HEAP_MIN;
/freebsd-11-stable/stand/i386/libi386/
H A Dbiosmem.c59 #define HEAP_MIN (64 * 1024 * 1024) macro
146 * set heap to use highest HEAP_MIN bytes below 4GB.
148 if (high_heap_base < smap.base && size >= HEAP_MIN) {
149 high_heap_base = smap.base + size - HEAP_MIN;
150 high_heap_size = HEAP_MIN;
219 * region in the SMAP, use the last HEAP_MIN of 'extended' memory as a
222 if (bios_extmem >= HEAP_MIN && high_heap_size < HEAP_MIN) {
223 high_heap_size = HEAP_MIN;
224 high_heap_base = memtop - HEAP_MIN;
[all...]
/freebsd-11-stable/stand/i386/isoboot/
H A Disoboot.c96 #define HEAP_MIN (3 * 1024 * 1024) macro
208 if (bios_extmem >= HEAP_MIN && high_heap_size < HEAP_MIN) {
209 high_heap_size = HEAP_MIN;
210 high_heap_base = bios_extmem + 0x100000 - HEAP_MIN;
/freebsd-11-stable/stand/i386/gptboot/
H A Dgptboot.c99 #define HEAP_MIN (3 * 1024 * 1024) macro
225 if (bios_extmem >= HEAP_MIN && high_heap_size < HEAP_MIN) {
226 high_heap_size = HEAP_MIN;
227 high_heap_base = bios_extmem + 0x100000 - HEAP_MIN;
/freebsd-11-stable/stand/i386/zfsboot/
H A Dzfsboot.c127 #define HEAP_MIN (64 * 1024 * 1024) macro
438 if (bios_extmem >= HEAP_MIN && high_heap_size < HEAP_MIN) {
439 high_heap_size = HEAP_MIN;
440 high_heap_base = bios_extmem + 0x100000 - HEAP_MIN;

Completed in 119 milliseconds