Lines Matching refs:MyPage
408 PUCHAR MyPage; in TestPhysicalMemorySection() local
427 MyPage = ExAllocatePoolWithTag(NonPagedPool, PAGE_SIZE, 'MPmK'); in TestPhysicalMemorySection()
428 if (skip(MyPage != NULL, "Out of memory\n")) in TestPhysicalMemorySection()
430 MyPagePhysical = MmGetPhysicalAddress(MyPage); in TestPhysicalMemorySection()
431 RtlFillMemory(MyPage + 0 * PAGE_SIZE / 4, PAGE_SIZE / 4, 0x23); in TestPhysicalMemorySection()
432 RtlFillMemory(MyPage + 1 * PAGE_SIZE / 4, PAGE_SIZE / 4, 0x67); in TestPhysicalMemorySection()
433 RtlFillMemory(MyPage + 2 * PAGE_SIZE / 4, PAGE_SIZE / 4, 0xab); in TestPhysicalMemorySection()
434 RtlFillMemory(MyPage + 3 * PAGE_SIZE / 4, PAGE_SIZE / 4, 0xef); in TestPhysicalMemorySection()
439 ExFreePoolWithTag(MyPage, 'MPmK'); in TestPhysicalMemorySection()
448 ExFreePoolWithTag(MyPage, 'MPmK'); in TestPhysicalMemorySection()
532 MyPage, in TestPhysicalMemorySection()
538 ok(MyPage[5] == 0x23, "MyPage[5] = 0x%x\n", MyPage[5]); in TestPhysicalMemorySection()
540 MyPage[5] = 0x44; in TestPhysicalMemorySection()
542 ok(MyPage[5] == 0x44, "MyPage[5] = 0x%x\n", MyPage[5]); in TestPhysicalMemorySection()
546 ok(MyPage[5] == 0x88, "MyPage[5] = 0x%x\n", MyPage[5]); in TestPhysicalMemorySection()
574 MyPage, in TestPhysicalMemorySection()
813 ExFreePoolWithTag(MyPage, 'MPmK'); in TestPhysicalMemorySection()