Home
last modified time | relevance | path

Searched refs:m_map (Results 1 – 19 of 19) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DUniqueCStringMap.h55 if (idx < m_map.size()) { in GetValueAtIndex()
73 return m_map[idx].value; in GetValueRefAtIndexUnchecked()
77 return ((idx < m_map.size()) ? m_map[idx].cstring : ConstString()); in GetCStringAtIndex()
112 if (!m_map.empty()) { in FindNextValueForName()
128 m_map.begin(), m_map.end(), unique_cstr, Compare()))) in GetValues()
168 void Sort() { llvm::sort(m_map.begin(), m_map.end(), Compare()); } in Sort()
176 if (m_map.size() < m_map.capacity()) { in SizeToFit()
177 collection temp(m_map.begin(), m_map.end()); in SizeToFit()
178 m_map.swap(temp); in SizeToFit()
191 std::equal_range(m_map.begin(), m_map.end(), unique_cstr, Compare())); in equal_range()
[all …]
H A DThreadSafeDenseMap.h27 : m_map(map_initial_capacity), m_mutex() {} in m_map() function
31 m_map.insert(std::make_pair(k, v)); in Insert()
36 m_map.erase(k); in Erase()
41 return m_map.lookup(k); in Lookup()
46 auto iter = m_map.find(k), end = m_map.end(); in Lookup()
55 m_map.clear(); in Clear()
59 LLVMMapType m_map;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.cpp21 m_map.Sort(); in Finalize()
22 m_map.SizeToFit(); in Finalize()
26 m_map.Append(name, die_ref); in Insert()
31 for (const auto &entry : m_map.equal_range(name)) in Find()
39 for (const auto &entry : m_map) in Find()
50 const uint32_t size = m_map.GetSize(); in FindAllEntriesForUnit()
64 const uint32_t size = m_map.GetSize(); in Dump()
67 m_map.GetCStringAtIndexUnchecked(i)); in Dump()
74 const uint32_t size = m_map.GetSize(); in ForEach()
83 const uint32_t size = other.m_map.GetSize(); in Append()
[all …]
H A DNameToDIE.h23 NameToDIE() : m_map() {} in NameToDIE()
51 lldb_private::UniqueCStringMap<DIERef> m_map;
/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp29 m_map[name] = entry; in Add()
36 MapIterator iter = m_map.find(name); in Delete()
37 if (iter == m_map.end()) in Delete()
39 m_map.erase(name); in Delete()
97 MapType::iterator iter = m_map.begin(), end = m_map.end(); in EnableAllCategories()
127 m_map.clear(); in Clear()
136 if (iter == m_map.end()) in Get()
144 MapIterator iter = m_map.begin(); in Get()
145 MapIterator end = m_map.end(); in Get()
162 MapIterator pos, end = m_map.end(); in AnyMatches()
[all …]
H A DFormatCache.cpp55 auto i = m_map.find(type), e = m_map.end(); in GetEntry()
58 m_map[type] = FormatCache::Entry(); in GetEntry()
59 return m_map[type]; in GetEntry()
120 m_map.clear(); in Clear()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h135 for (auto iter = m_map.begin(); iter != m_map.end(); ++iter) in Delete()
137 m_map.erase(iter); in Delete()
147 for (auto &formatter : llvm::reverse(m_map)) { in Get()
158 for (const auto &pos : m_map) in GetExact()
168 if (index >= m_map.size()) in GetAtIndex()
170 return m_map[index].second; in GetAtIndex()
175 if (index >= m_map.size()) in GetTypeNameSpecifierAtIndex()
184 m_map.clear(); in Clear()
192 for (const auto &pos : m_map) { in ForEach()
202 return m_map.size(); in GetCount()
[all …]
H A DTypeCategoryMap.h78 uint32_t GetCount() { return m_map.size(); } in GetCount()
98 MapType m_map; variable
101 MapType &map() { return m_map; } in map()
H A DFormatCache.h49 CacheMap m_map; variable
/freebsd-13.1/contrib/atf/atf-c/detail/
H A Dmap.c108 return i1.m_map == i2.m_map && i1.m_entry == i2.m_entry; in atf_equal_map_citer_map_citer()
152 return i1.m_map == i2.m_map && i1.m_entry == i2.m_entry; in atf_equal_map_iter_map_iter()
225 iter.m_map = m; in atf_map_begin()
235 citer.m_map = m; in atf_map_begin_c()
245 iter.m_map = m; in atf_map_end()
255 iter.m_map = m; in atf_map_end_c()
271 i.m_map = m; in atf_map_find()
291 i.m_map = m; in atf_map_find_c()
H A Dmap.h40 const struct atf_map *m_map; member
60 struct atf_map *m_map; member
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DTypeSystem.cpp181 TypeSystemMap::TypeSystemMap() : m_mutex(), m_map() {} in TypeSystemMap()
189 map = m_map; in Clear()
203 m_map.clear(); in Clear()
213 for (auto pair : m_map) { in ForEach()
232 collection::iterator pos = m_map.find(language); in GetTypeSystemForLanguage()
233 if (pos != m_map.end()) { in GetTypeSystemForLanguage()
244 for (const auto &pair : m_map) { in GetTypeSystemForLanguage()
248 m_map[language] = pair.second; in GetTypeSystemForLanguage()
268 m_map[language] = type_system_sp; in GetTypeSystemForLanguage()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Expression/
H A DMaterializer.h40 return m_materializer && m_map && in IsValid()
49 : m_materializer(&materializer), m_map(&map), in Dematerializer()
60 IRMemoryMap *m_map = nullptr; variable
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp144 return m_map.try_emplace(file, m_map.size() + 1).first->second; in operator []()
153 llvm::DenseMap<size_t, size_t> m_map; member in __anon4ddda1900111::SupportFileMap
160 result.resize(m_map.size() + 1); in translate()
162 for (const auto &KV : m_map) { in translate()
/freebsd-13.1/sys/dev/bxe/
H A Dbxe.c2829 if (rx_buf->m_map != NULL) { in bxe_tpa_start()
6098 if (fp->rx_mbuf_chain[i].m_map != NULL) { in bxe_free_rx_bd_chain()
6271 if (rx_buf->m_map != NULL) { in bxe_alloc_rx_bd_mbuf()
6288 if (rx_buf->m_map != NULL) { in bxe_alloc_rx_bd_mbuf()
6296 fp->rx_mbuf_chain[prev_index].m_map : rx_buf->m_map; in bxe_alloc_rx_bd_mbuf()
6297 rx_buf->m_map = fp->rx_mbuf_spare_map; in bxe_alloc_rx_bd_mbuf()
6348 if (tpa_info->bd.m_map != NULL) { in bxe_alloc_rx_tpa_mbuf()
6355 map = tpa_info->bd.m_map; in bxe_alloc_rx_tpa_mbuf()
6412 if (sge_buf->m_map != NULL) { in bxe_alloc_rx_sge_mbuf()
6419 map = sge_buf->m_map; in bxe_alloc_rx_sge_mbuf()
[all …]
H A Dbxe.h514 bus_dmamap_t m_map; member
523 bus_dmamap_t m_map; member
/freebsd-13.1/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp1407 exe_scope = m_map->GetBestExecutionContextScope(); in Dematerialize()
1425 entity_up->DumpToLog(*m_map, m_process_address, log); in Dematerialize()
1429 entity_up->Dematerialize(frame_sp, *m_map, m_process_address, frame_top, in Dematerialize()
1445 entity_up->Wipe(*m_map, m_process_address); in Wipe()
1449 m_map = nullptr; in Wipe()
/freebsd-13.1/sys/vm/
H A Dvm_fault.c318 vm_page_t m, m_map; in vm_fault_soft_fast() local
339 m_map = m; in vm_fault_soft_fast()
362 m_map = m_super; in vm_fault_soft_fast()
371 if (pmap_enter(fs->map->pmap, vaddr, m_map, fs->prot, fs->fault_type | in vm_fault_soft_fast()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeSystem.h526 collection m_map; variable