Searched refs:msex (Results 1 – 4 of 4) sorted by relevance
/reactos/base/shell/cmd/ |
H A D | memory.c | 20 MEMORYSTATUSEX msex; in CommandMemory() local 40 msex.dwLength = sizeof(MEMORYSTATUSEX); in CommandMemory() 41 GlobalMemoryStatusEx(&msex); in CommandMemory() 48 msex.dwMemoryLoad = ms.dwMemoryLoad; in CommandMemory() 49 msex.ullTotalPhys = ms.dwTotalPhys; in CommandMemory() 50 msex.ullAvailPhys = ms.dwAvailPhys; in CommandMemory() 51 msex.ullTotalPageFile = ms.dwTotalPageFile; in CommandMemory() 52 msex.ullAvailPageFile = ms.dwAvailPageFile; in CommandMemory() 53 msex.ullTotalVirtual = ms.dwTotalVirtual; in CommandMemory() 54 msex.ullAvailVirtual = ms.dwAvailVirtual; in CommandMemory() [all …]
|
/reactos/dll/cpl/powercfg/ |
H A D | hibernate.c | 18 MEMORYSTATUSEX msex; in Hib_InitDialog() local 30 msex.dwLength = sizeof(msex); in Hib_InitDialog() 31 if (!GlobalMemoryStatusEx(&msex)) in Hib_InitDialog() 50 StrFormatByteSize(msex.ullTotalPhys, szTemp, _countof(szTemp)); in Hib_InitDialog() 53 if (TotalNumberOfFreeBytes.QuadPart < msex.ullTotalPhys && !PowerCaps.HiberFilePresent) in Hib_InitDialog()
|
/reactos/dll/directx/wine/dxdiagn/ |
H A D | provider.c | 731 MEMORYSTATUSEX msex; in build_systeminfo_tree() local 765 msex.dwLength = sizeof(msex); in build_systeminfo_tree() 766 GlobalMemoryStatusEx(&msex); in build_systeminfo_tree() 768 hr = add_ull_as_bstr_property(node, ullPhysicalMemory, msex.ullTotalPhys); in build_systeminfo_tree() 772 …hr = add_ull_as_bstr_property(node, ullUsedPageFile, msex.ullTotalPageFile - msex.ullAvailPageFile… in build_systeminfo_tree() 776 hr = add_ull_as_bstr_property(node, ullAvailPageFile, msex.ullAvailPageFile); in build_systeminfo_tree() 809 (DWORD)(msex.ullTotalPhys / (1024 * 1024))); in build_systeminfo_tree() 814 usedpage_mb = (DWORD)((msex.ullTotalPageFile - msex.ullAvailPageFile) / (1024 * 1024)); in build_systeminfo_tree() 815 availpage_mb = (DWORD)(msex.ullAvailPageFile / (1024 * 1024)); in build_systeminfo_tree()
|
/reactos/dll/win32/msi/ |
H A D | package.c | 635 MEMORYSTATUSEX msex; in set_installer_properties() local 730 msex.dwLength = sizeof(msex); in set_installer_properties() 731 GlobalMemoryStatusEx( &msex ); in set_installer_properties() 732 len = swprintf( bufstr, ARRAY_SIZE(bufstr), L"%d", (int)(msex.ullTotalPhys / 1024 / 1024) ); in set_installer_properties()
|