Home
last modified time | relevance | path

Searched refs:mbi (Results 1 – 2 of 2) sorted by relevance

/vim-8.2.3635/src/
H A Dos_win32.c7502 MEMORY_BASIC_INFORMATION mbi; in myresetstkoflw() local
7515 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0) in myresetstkoflw()
7517 pStackBase = (BYTE*)mbi.AllocationBase; in myresetstkoflw()
7530 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0) in myresetstkoflw()
7533 pBlock += mbi.RegionSize; in myresetstkoflw()
7535 if (mbi.State & MEM_COMMIT) in myresetstkoflw()
7540 if (mbi.Protect & PAGE_GUARD) in myresetstkoflw()
7544 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage) in myresetstkoflw()
7547 pGuardPage = (BYTE*)mbi.BaseAddress; in myresetstkoflw()
H A Dos_mswin.c757 MEMORY_BASIC_INFORMATION mbi; in check_str_len() local
766 if (VirtualQuery(str, &mbi, sizeof(mbi))) in check_str_len()
770 long_u dwBaseAddress = (long_u)mbi.BaseAddress; in check_str_len()