HomeSort by relevance Sort by last modified time
    Searched refs:mbi (Results 1 - 14 of 14) sorted by null

  /external/grub/docs/
kernel.c 55 multiboot_info_t *mbi; local
67 /* Set MBI to the address of the Multiboot information structure. */
68 mbi = (multiboot_info_t *) addr;
71 printf ("flags = 0x%x\n", (unsigned) mbi->flags);
74 if (CHECK_FLAG (mbi->flags, 0))
76 (unsigned) mbi->mem_lower, (unsigned) mbi->mem_upper);
79 if (CHECK_FLAG (mbi->flags, 1))
80 printf ("boot_device = 0x%x\n", (unsigned) mbi->boot_device);
83 if (CHECK_FLAG (mbi->flags, 2)
    [all...]
kernel.c.texi 55 multiboot_info_t *mbi;
67 /* @r{Set MBI to the address of the Multiboot information structure.} */
68 mbi = (multiboot_info_t *) addr;
71 printf ("flags = 0x%x\n", (unsigned) mbi->flags);
74 if (CHECK_FLAG (mbi->flags, 0))
76 (unsigned) mbi->mem_lower, (unsigned) mbi->mem_upper);
79 if (CHECK_FLAG (mbi->flags, 1))
80 printf ("boot_device = 0x%x\n", (unsigned) mbi->boot_device);
83 if (CHECK_FLAG (mbi->flags, 2)
    [all...]
  /external/grub/stage2/
common.c 32 struct multiboot_info mbi; variable in typeref:struct:multiboot_info
115 for (cont = 0, addr = mbi.mmap_addr;
116 addr < mbi.mmap_addr + mbi.mmap_length;
153 mbi.mem_lower = get_memsize (0);
154 mbi.mem_upper = get_memsize (1);
167 extended_memory = mbi.mem_upper;
170 * The "mbi.mem_upper" variable only recognizes upper memory in the
177 mbi.mmap_addr = addr;
178 mbi.mmap_length = 0
    [all...]
boot.c 232 = (char *) ((mbi.mem_lower << 10) - LINUX_SETUP_MOVE_SIZE);
279 > RAW_ADDR ((char *) (mbi.mem_lower << 10)))
480 mbi.cmdline = (int) arg;
481 mbi.mods_count = 0;
482 mbi.mods_addr = 0;
483 mbi.boot_device = (current_drive << 24) | current_partition;
484 mbi.flags &= ~(MB_INFO_MODS | MB_INFO_AOUT_SYMS | MB_INFO_ELF_SHDR);
485 mbi.syms.a.tabsize = 0;
486 mbi.syms.a.strsize = 0;
487 mbi.syms.a.addr = 0
    [all...]
cmdline.c 109 mbi.mem_upper = saved_mem_upper;
110 if (mbi.mmap_length)
111 mbi.flags |= MB_INFO_MEM_MAP;
char_io.c 242 version_string, mbi.mem_lower, mbi.mem_upper);
1212 && RAW_ADDR (mbi.mem_lower * 1024) < (addr + len))
1214 && RAW_ADDR (mbi.mem_upper * 1024) < ((addr - 0x100000) + len)))
builtins.c 259 bsd_boot (kernel_type, bootdev, (char *) mbi.cmdline);
304 multi_boot ((int) entry_addr, (int) &mbi);
874 if (mbi.flags & MB_INFO_APM_TABLE)
925 mbi.mem_lower, mbi.mem_upper);
927 if (mbi.flags & MB_INFO_MEM_MAP)
929 struct AddrRangeDesc *map = (struct AddrRangeDesc *) mbi.mmap_addr;
930 int end_addr = mbi.mmap_addr + mbi.mmap_length;
    [all...]
stage2.c 854 config_entries = (char *) mbi.drives_addr + mbi.drives_length;
gunzip.c 172 linalloc_topaddr = RAW_ADDR ((mbi.mem_upper << 10) + 0x100000);
    [all...]
shared.h 673 extern struct multiboot_info mbi;
  /external/clang/tools/libclang/
CIndexer.cpp 53 MEMORY_BASIC_INFORMATION mbi;
55 VirtualQuery((void *)(uintptr_t)clang_createTranslationUnit, &mbi,
56 sizeof(mbi));
57 GetModuleFileNameA((HINSTANCE)mbi.AllocationBase, path, MAX_PATH);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_win.cc 53 MEMORY_BASIC_INFORMATION mbi; local
54 CHECK_NE(VirtualQuery(&mbi /* on stack */, &mbi, sizeof(mbi)), 0);
58 *stack_top = (uptr)mbi.BaseAddress + mbi.RegionSize;
59 *stack_bottom = (uptr)mbi.AllocationBase;
  /external/chromium/base/
process_util_win.cc 633 MEMORY_BASIC_INFORMATION mbi = {0}; local
638 while (VirtualQueryEx(process_, base_address, &mbi, sizeof(mbi)) ==
639 sizeof(mbi)) {
640 if (mbi.State == MEM_COMMIT) {
641 if (mbi.Type == MEM_PRIVATE) {
642 committed_private += mbi.RegionSize;
643 } else if (mbi.Type == MEM_MAPPED) {
644 committed_mapped += mbi.RegionSize;
645 } else if (mbi.Type == MEM_IMAGE)
    [all...]
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 

Completed in 659 milliseconds