Home
last modified time | relevance | path

Searched refs:m_records (Results 1 – 4 of 4) sorted by relevance

/external/deqp/external/vulkancts/framework/vulkan/
DvkAllocationCallbackUtil.hpp148 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
DvkAllocationCallbackUtil.cpp231 , m_records (callCountHint) in AllocationCallbackRecorder()
243 m_records.append(AllocationCallbackRecord::allocation(size, alignment, allocationScope, ptr)); in allocate()
252m_records.append(AllocationCallbackRecord::reallocation(original, size, alignment, allocationScope… in reallocate()
261 m_records.append(AllocationCallbackRecord::free(mem)); in free()
268m_records.append(AllocationCallbackRecord::internalAllocation(size, allocationType, allocationScop… in notifyInternalAllocation()
275 m_records.append(AllocationCallbackRecord::internalFree(size, allocationType, allocationScope)); in notifyInternalFree()
/external/llvm-project/lldb/source/Expression/
DIRExecutionUnit.cpp444 for (AllocationRecord &record : m_records) { in GetRunnableInfo()
590 m_parent.m_records.push_back(AllocationRecord( in allocateCodeSection()
606 m_parent.CommitOneAllocation(process_sp, err, m_parent.m_records.back()); in allocateCodeSection()
623 m_parent.m_records.push_back(AllocationRecord( in allocateDataSection()
637 m_parent.CommitOneAllocation(process_sp, err, m_parent.m_records.back()); in allocateDataSection()
1069 for (AllocationRecord &record : m_records) { in GetRemoteAddressForLocal()
1096 for (AllocationRecord &record : m_records) { in GetRemoteRangeForLocal()
1156 for (AllocationRecord &record : m_records) { in CommitAllocations()
1165 for (AllocationRecord &record : m_records) { in CommitAllocations()
1179 for (AllocationRecord &record : m_records) { in ReportAllocations()
[all …]
/external/llvm-project/lldb/include/lldb/Expression/
DIRExecutionUnit.h370 RecordVector m_records; variable