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

  /external/clang/tools/libclang/
CIndexer.cpp 55 MEMORY_BASIC_INFORMATION mbi; local
57 VirtualQuery((void *)(uintptr_t)clang_createTranslationUnit, &mbi,
58 sizeof(mbi));
59 GetModuleFileNameA((HINSTANCE)mbi.AllocationBase, path, MAX_PATH);
  /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_org/base/process/
process_metrics_win.cc 86 MEMORY_BASIC_INFORMATION mbi = {0}; local
91 while (VirtualQueryEx(process_, base_address, &mbi, sizeof(mbi)) ==
92 sizeof(mbi)) {
93 if (mbi.State == MEM_COMMIT) {
94 if (mbi.Type == MEM_PRIVATE) {
95 committed_private += mbi.RegionSize;
96 } else if (mbi.Type == MEM_MAPPED) {
97 committed_mapped += mbi.RegionSize;
98 } else if (mbi.Type == MEM_IMAGE)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
preamble_patcher.cc 478 MEMORY_BASIC_INFORMATION mbi = { 0 }; local
479 if (!::VirtualQuery(target, &mbi, sizeof(mbi))) {
489 mbi.AllocationBase);
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
preamble_patcher.cc 478 MEMORY_BASIC_INFORMATION mbi = { 0 }; local
479 if (!::VirtualQuery(target, &mbi, sizeof(mbi))) {
489 mbi.AllocationBase);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_win.cc 71 MEMORY_BASIC_INFORMATION mbi; local
72 CHECK_NE(VirtualQuery(&mbi /* on stack */, &mbi, sizeof(mbi)), 0);
76 *stack_top = (uptr)mbi.BaseAddress + mbi.RegionSize;
77 *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...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 

Completed in 383 milliseconds