Home | History | Annotate | Download | only in src

Lines Matching refs:minfo

1331   MEMORY_BASIC_INFORMATION minfo;
1334 if (VirtualQuery(cptr, &minfo, sizeof(minfo)) == 0)
1336 if (minfo.BaseAddress != cptr || minfo.AllocationBase != cptr ||
1337 minfo.State != MEM_COMMIT || minfo.RegionSize > size)
1341 cptr += minfo.RegionSize;
1342 size -= minfo.RegionSize;