Searched defs:linux_mem_size (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/loader/i386/pc/
H A Dlinux.c44 static grub_size_t linux_mem_size; variable
131 linux_mem_size = 0;
240 linux_mem_size = grub_strtoul (val, &val, 0);
245 linux_mem_size = 0;
264 if (linux_mem_size > (~0UL >> shift))
265 linux_mem_size = 0;
267 linux_mem_size <<= shift;
402 if (linux_mem_size != 0 && linux_mem_size < addr_max)
403 addr_max = linux_mem_size;
[all...]
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dboot.c31 static int linux_mem_size; variable
331 safe_parse_maxint (&value, &linux_mem_size);
338 linux_mem_size = LINUX_INITRD_MAX_ADDRESS;
359 if (linux_mem_size > (MAXINT >> shift))
360 linux_mem_size = LINUX_INITRD_MAX_ADDRESS;
362 linux_mem_size <<= shift;
367 linux_mem_size = 0;
373 linux_mem_size = 0;
831 if (linux_mem_size)
832 moveto = linux_mem_size;
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/loader/i386/
H A Dlinux.c66 static grub_size_t linux_mem_size; variable
728 linux_mem_size = 0;
818 linux_mem_size = grub_strtoul (val, &val, 0);
823 linux_mem_size = 0;
842 if (linux_mem_size > (~0UL >> shift))
843 linux_mem_size = 0;
845 linux_mem_size <<= shift;
946 if (linux_mem_size != 0 && linux_mem_size < addr_max)
947 addr_max = linux_mem_size;
[all...]

Completed in 37 milliseconds