Lines Matching refs:GPA
18 AllocateMemory(gwp_asan::GuardedPoolAllocator &GPA) { in AllocateMemory() argument
19 return GPA.allocate(1); in AllocateMemory()
22 DeallocateMemory(gwp_asan::GuardedPoolAllocator &GPA, void *Ptr) { in DeallocateMemory() argument
23 GPA.deallocate(Ptr); in DeallocateMemory()
26 DeallocateMemory2(gwp_asan::GuardedPoolAllocator &GPA, void *Ptr) { in DeallocateMemory2() argument
27 GPA.deallocate(Ptr); in DeallocateMemory2()
34 void *Ptr = AllocateMemory(GPA); in TEST_F()
35 DeallocateMemory(GPA, Ptr); in TEST_F()
45 ASSERT_DEATH(DeallocateMemory2(GPA, Ptr), DeathRegex); in TEST_F()
49 void *Ptr = AllocateMemory(GPA); in TEST_F()
50 DeallocateMemory(GPA, Ptr); in TEST_F()