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

  /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...]
  /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...]
  /external/chromium/base/
process_util_win.cc 540 MEMORY_BASIC_INFORMATION mbi = {0}; local
545 while (VirtualQueryEx(process_, base_address, &mbi, sizeof(mbi)) ==
546 sizeof(mbi)) {
547 if (mbi.State == MEM_COMMIT) {
548 if (mbi.Type == MEM_PRIVATE) {
549 committed_private += mbi.RegionSize;
550 } else if (mbi.Type == MEM_MAPPED) {
551 committed_mapped += mbi.RegionSize;
552 } else if (mbi.Type == MEM_IMAGE)
    [all...]
  /external/bluetooth/glib/glib/
gutils.c 2559 MEMORY_BASIC_INFORMATION mbi; local
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 94 milliseconds