Searched refs:mbi (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/tcl-105/tcl/tcl/win/
H A DtclWin32Dll.c565 MEMORY_BASIC_INFORMATION mbi;
580 if (VirtualQuery((LPCVOID) &tsdPtr, &mbi, sizeof(mbi)) == 0) {
603 (int*) ((UINT_PTR)(mbi.AllocationBase)
558 MEMORY_BASIC_INFORMATION mbi; local
/macosx-10.10/llvmCore-3425.0.34/lib/Support/Windows/
H A DPathV2.inc765 MEMORY_BASIC_INFORMATION mbi;
766 SIZE_T Result = VirtualQuery(Mapping, &mbi, sizeof(mbi));
777 Size = mbi.RegionSize;
/macosx-10.10/vim-55/src/
H A Dos_win32.c4885 MEMORY_BASIC_INFORMATION mbi; local
4903 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
4905 pStackBase = (BYTE*)mbi.AllocationBase;
4936 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
4939 pBlock += mbi.RegionSize;
4941 if (mbi.State & MEM_COMMIT)
4945 /* mbi now describes the first committed block in the stack. */
4946 if (mbi
[all...]
H A Dos_mswin.c769 MEMORY_BASIC_INFORMATION mbi; local
778 if (VirtualQuery(str, &mbi, sizeof(mbi)))
782 long_u dwBaseAddress = (long_u)mbi.BaseAddress;

Completed in 208 milliseconds