Home | History | Annotate | Download | only in src

Lines Matching refs:mbase

889   LPVOID mbase = VirtualAlloc(reinterpret_cast<void *>(address),
893 if (mbase == NULL && address != 0)
894 mbase = VirtualAlloc(NULL, msize, MEM_COMMIT | MEM_RESERVE, prot);
896 if (mbase == NULL) {
901 ASSERT(IsAligned(reinterpret_cast<size_t>(mbase), OS::AllocateAlignment()));
904 UpdateAllocatedSpaceLimits(mbase, static_cast<int>(msize));
905 return mbase;