Home | History | Annotate | Download | only in Support

Lines Matching defs:M4

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