Searched refs:m_records (Results 1 – 2 of 2) sorted by relevance
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkAllocationCallbackUtil.hpp | 148 RecordIterator getRecordsBegin (void) const { return m_records.begin(); } in getRecordsBegin() 149 RecordIterator getRecordsEnd (void) const { return m_records.end(); } in getRecordsEnd() 150 std::size_t getNumRecords (void) const { return m_records.size(); } in getNumRecords() 155 Records m_records; member in vk::AllocationCallbackRecorder
|
D | vkAllocationCallbackUtil.cpp | 231 , m_records (callCountHint) in AllocationCallbackRecorder() 243 m_records.append(AllocationCallbackRecord::allocation(size, alignment, allocationScope, ptr)); in allocate() 252 …m_records.append(AllocationCallbackRecord::reallocation(original, size, alignment, allocationScope… in reallocate() 261 m_records.append(AllocationCallbackRecord::free(mem)); in free() 268 …m_records.append(AllocationCallbackRecord::internalAllocation(size, allocationType, allocationScop… in notifyInternalAllocation() 275 m_records.append(AllocationCallbackRecord::internalFree(size, allocationType, allocationScope)); in notifyInternalFree()
|