Lines Matching refs:M4
92 MemoryBlock M4 = Memory::allocateMappedMemory(16, nullptr, Flags, EC); in TEST_P() local
94 EXPECT_NE((void*)nullptr, M4.base()); in TEST_P()
95 EXPECT_LE(16U, M4.size()); in TEST_P()
96 EXPECT_FALSE(Memory::releaseMappedMemory(M4)); in TEST_P()
165 MemoryBlock M4 = Memory::allocateMappedMemory(64 * sizeof(int), nullptr, in TEST_P() local
168 EXPECT_NE((void*)nullptr, M4.base()); in TEST_P()
169 EXPECT_LE(64U * sizeof(int), M4.size()); in TEST_P()
170 x = (int*)M4.base(); in TEST_P()
173 EXPECT_FALSE(Memory::releaseMappedMemory(M4)); in TEST_P()
226 MemoryBlock M4 = Memory::allocateMappedMemory(16, nullptr, Flags, EC); in TEST_P() local
228 EXPECT_NE((void*)nullptr, M4.base()); in TEST_P()
229 EXPECT_LE(16U, M4.size()); in TEST_P()
231 Memory::protectMappedMemory(M4, getTestableEquivalent(Flags))); in TEST_P()
232 x = (int*)M4.base(); in TEST_P()
235 EXPECT_FALSE(Memory::releaseMappedMemory(M4)); in TEST_P()