Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DUniqueCStringMap.h55 if (idx < m_map.size()) { in GetValueAtIndex()
63 return m_map[idx].cstring; in GetCStringAtIndexUnchecked()
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()
190 if (m_map.size() < m_map.capacity()) { in SizeToFit()
191 collection temp(m_map.begin(), m_map.end()); in SizeToFit()
192 m_map.swap(temp); in SizeToFit()
205 std::equal_range(m_map.begin(), m_map.end(), unique_cstr, Compare())); in equal_range()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.cpp26 m_map.Sort(std::less<DIERef>()); in Finalize()
27 m_map.SizeToFit(); in Finalize()
31 m_map.Append(name, die_ref); in Insert()
44 for (const auto &entry : m_map) in Find()
90 m_map.Append(other.m_map.GetCStringAtIndexUnchecked(i), in Append()
99 m_map.Clear(); in Decode()
104 m_map.Reserve(count); in Decode()
124 m_map.Sort(std::less<DIERef>()); in Decode()
131 for (const auto &entry : m_map) { in Encode()
141 if (size != rhs.m_map.GetSize()) in operator ==()
[all …]
H A DNameToDIE.h25 NameToDIE() : m_map() {} in NameToDIE()
84 bool IsEmpty() const { return m_map.IsEmpty(); } in IsEmpty()
86 void Clear() { m_map.Clear(); } in Clear()
89 UniqueCStringMap<DIERef> m_map;
/freebsd/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()
135 MapIterator iter = m_map.find(name); in Get()
136 if (iter == m_map.end()) in Get()
149 MapIterator pos, end = m_map.end(); in AnyMatches()
237 if (index < m_map.size()) { in GetAtIndex()
[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/contrib/llvm-project/lldb/include/lldb/Utility/
H A DThreadSafeDenseMap.h23 : m_map(map_initial_capacity), m_mutex() {} in m_map() function
27 m_map.insert(std::make_pair(k, v)); in Insert()
32 m_map.erase(k); in Erase()
37 return m_map.lookup(k); in Lookup()
42 auto iter = m_map.find(k), end = m_map.end(); in Lookup()
51 m_map.clear(); in Clear()
55 LLVMMapType m_map;
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h169 for (auto iter = m_map.begin(); iter != m_map.end(); ++iter) in Delete()
171 m_map.erase(iter); in Delete()
182 for (auto &formatter : llvm::reverse(m_map)) { in Get()
209 for (const auto &pos : m_map) in GetExact()
219 if (index >= m_map.size()) in GetAtIndex()
221 return m_map[index].second; in GetAtIndex()
226 if (index >= m_map.size()) in GetTypeNameSpecifierAtIndex()
236 m_map.clear(); in Clear()
244 for (const auto &pos : m_map) { in ForEach()
254 return m_map.size(); in GetCount()
[all …]
H A DTypeCategoryMap.h75 uint32_t GetCount() { return m_map.size(); } in GetCount()
95 MapType m_map; variable
98 MapType &map() { return m_map; } in map()
H A DFormatCache.h49 CacheMap m_map; variable
/freebsd/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/contrib/llvm-project/lldb/source/Symbol/
H A DTypeSystem.cpp206 TypeSystemMap::TypeSystemMap() : m_mutex(), m_map() {} in TypeSystemMap()
214 map = m_map; in Clear()
228 m_map.clear(); in Clear()
243 map_snapshot = m_map; in ForEach()
269 collection::iterator pos = m_map.find(language); in GetTypeSystemForLanguage()
270 if (pos != m_map.end()) { in GetTypeSystemForLanguage()
282 for (const auto &pair : m_map) { in GetTypeSystemForLanguage()
286 m_map[language] = pair.second; in GetTypeSystemForLanguage()
306 m_map[language] = type_system_sp; in GetTypeSystemForLanguage()
/freebsd/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/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp146 return m_map.try_emplace(file, m_map.size() + 1).first->second; in operator []()
155 llvm::DenseMap<size_t, size_t> m_map; member in __anoneb438f240111::SupportFileMap
162 result.resize(m_map.size() + 1); in translate()
164 for (const auto &KV : m_map) { in translate()
/freebsd/sys/dev/bxe/
H A Dbxe.c2821 if (rx_buf->m_map != NULL) { in bxe_tpa_start()
6085 if (fp->rx_mbuf_chain[i].m_map != NULL) { in bxe_free_rx_bd_chain()
6255 if (rx_buf->m_map != NULL) { in bxe_alloc_rx_bd_mbuf()
6272 if (rx_buf->m_map != NULL) { in bxe_alloc_rx_bd_mbuf()
6280 fp->rx_mbuf_chain[prev_index].m_map : rx_buf->m_map; in bxe_alloc_rx_bd_mbuf()
6281 rx_buf->m_map = fp->rx_mbuf_spare_map; in bxe_alloc_rx_bd_mbuf()
6332 if (tpa_info->bd.m_map != NULL) { in bxe_alloc_rx_tpa_mbuf()
6339 map = tpa_info->bd.m_map; in bxe_alloc_rx_tpa_mbuf()
6396 if (sge_buf->m_map != NULL) { in bxe_alloc_rx_sge_mbuf()
6403 map = sge_buf->m_map; in bxe_alloc_rx_sge_mbuf()
[all …]
H A Dbxe.h511 bus_dmamap_t m_map; member
520 bus_dmamap_t m_map; member
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp1556 exe_scope = m_map->GetBestExecutionContextScope(); in Dematerialize()
1573 entity_up->DumpToLog(*m_map, m_process_address, log); in Dematerialize()
1577 entity_up->Dematerialize(frame_sp, *m_map, m_process_address, frame_top, in Dematerialize()
1593 entity_up->Wipe(*m_map, m_process_address); in Wipe()
1597 m_map = nullptr; in Wipe()
/freebsd/sys/vm/
H A Dvm_fault.c337 vm_page_t m, m_map; in vm_fault_soft_fast() local
379 m_map = m; in vm_fault_soft_fast()
402 m_map = m_super; in vm_fault_soft_fast()
411 if (pmap_enter(fs->map->pmap, vaddr, m_map, fs->prot, fs->fault_type | in vm_fault_soft_fast()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeSystem.h549 collection m_map; variable