Home | History | Annotate | Download | only in src

Lines Matching refs:VirtualAlloc

831 // Get the system's page size used by VirtualAlloc() or the next power
846 // VirtualAlloc'ed blocks of memory.
874 // VirtualAlloc rounds allocated size to page size automatically.
889 LPVOID mbase = VirtualAlloc(reinterpret_cast<void *>(address),
894 mbase = VirtualAlloc(NULL, msize, MEM_COMMIT | MEM_RESERVE, prot);
897 LOG(ISOLATE, StringEvent("OS::Allocate", "VirtualAlloc failed"));
1437 address_ = VirtualAlloc(NULL, size, MEM_RESERVE, PAGE_NOACCESS);
1451 if (NULL == VirtualAlloc(address, size, MEM_COMMIT, prot)) {