Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
HDIRMemoryMap.cpp35 while ((iter = m_allocations.begin()) != m_allocations.end()) { in ~IRMemoryMap()
38 m_allocations.erase(iter); in ~IRMemoryMap()
85 if (m_allocations.empty()) { in FindSpace()
88 auto back = m_allocations.rbegin(); in FindSpace()
140 if (m_allocations.empty()) { in FindSpace()
155 auto back = m_allocations.rbegin(); in FindSpace()
167 return m_allocations.end(); in FindAllocation()
169 AllocationMap::iterator iter = m_allocations.lower_bound(addr); in FindAllocation()
171 if (iter == m_allocations.end() || iter->first > addr) { in FindAllocation()
172 if (iter == m_allocations.begin()) in FindAllocation()
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
HDIRMemoryMap.h120 AllocationMap m_allocations; variable
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
HDRenderScriptRuntime.cpp1457 for (auto iter = m_allocations.begin(); iter != m_allocations.end(); ++iter) { in CaptureAllocationDestroy()
1461 m_allocations.erase(iter); in CaptureAllocationDestroy()
3144 if (alloc_id <= m_allocations.size() && alloc_id != 0 && in FindAllocByID()
3145 m_allocations[alloc_id - 1]->id == alloc_id) { in FindAllocByID()
3146 alloc = m_allocations[alloc_id - 1].get(); in FindAllocByID()
3151 for (const auto &a : m_allocations) { in FindAllocByID()
3325 for (auto &alloc : m_allocations) { in RecomputeAllAllocations()
3351 for (auto &alloc : m_allocations) { in ListAllocations()
3835 for (const auto &a : m_allocations) { in LookUpAllocation()
3848 auto it = m_allocations.begin(); in CreateAllocation()
[all …]
HDRenderScriptRuntime.h475 std::vector<std::unique_ptr<AllocationDetails>> m_allocations; variable