Home | History | Annotate | Download | only in tests

Lines Matching refs:allocation

56   size_t *allocation;
72 AllocationExpectedValuePair allocation = {
73 .allocation = memoryPool.allocate(),
77 *allocation.allocation = j;
78 allocations.push_back(allocation);
91 // Verify the expected value and free the allocation.
92 ASSERT_EQ(*allocations[deallocateIndex].allocation,
94 memoryPool.deallocate(allocations[deallocateIndex].allocation);
96 // Remove the freed allocation from the allocation list.