Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DUniqueCStringMap.h67 m_map.insert(std::upper_bound(m_map.begin(), m_map.end(), e), e); in Insert()
71 m_map.insert(std::upper_bound(m_map.begin(), m_map.end(), e), e); in Insert()
81 if (idx < m_map.size()) { in GetValueAtIndex()
99 return m_map[idx].value; in GetValueRefAtIndexUnchecked()
103 return ((idx < m_map.size()) ? m_map[idx].cstring : ConstString()); in GetCStringAtIndex()
150 if (!m_map.empty()) { in FindNextValueForName()
220 void Sort() { llvm::sort(m_map.begin(), m_map.end()); } in Sort()
230 if (m_map.size() < m_map.capacity()) { in SizeToFit()
231 collection temp(m_map.begin(), m_map.end()); in SizeToFit()
232 m_map.swap(temp); in SizeToFit()
[all …]
H A DThreadSafeDenseMap.h28 : m_map(map_initial_capacity), m_mutex() {} in m_map() function
32 m_map.insert(std::make_pair(k, v)); in Insert()
37 m_map.erase(k); in Erase()
42 return m_map.lookup(k); in Lookup()
47 auto iter = m_map.find(k), end = m_map.end(); in Lookup()
56 m_map.clear(); in Clear()
60 LLVMMapType m_map;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.cpp25 m_map.Sort(); in Finalize()
26 m_map.SizeToFit(); in Finalize()
30 m_map.Append(name, die_ref); in Insert()
34 return m_map.GetValues(name, info_array); in Find()
39 return m_map.GetValues(regex, info_array); in Find()
45 const uint32_t size = m_map.GetSize(); in FindAllEntriesForCompileUnit()
55 const uint32_t size = m_map.GetSize(); in Dump()
57 ConstString cstr = m_map.GetCStringAtIndex(i); in Dump()
67 const uint32_t size = m_map.GetSize(); in ForEach()
76 const uint32_t size = other.m_map.GetSize(); in Append()
[all …]
H A DNameToDIE.h24 NameToDIE() : m_map() {} in NameToDIE()
51 lldb_private::UniqueCStringMap<DIERef> m_map;
/freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp31 m_map[name] = entry; in Add()
38 MapIterator iter = m_map.find(name); in Delete()
39 if (iter == m_map.end()) in Delete()
41 m_map.erase(name); in Delete()
99 MapType::iterator iter = m_map.begin(), end = m_map.end(); in EnableAllCategories()
129 m_map.clear(); in Clear()
138 if (iter == m_map.end()) in Get()
146 MapIterator iter = m_map.begin(); in Get()
147 MapIterator end = m_map.end(); in Get()
164 MapIterator pos, end = m_map.end(); in AnyMatches()
[all …]
H A DFormatCache.cpp105 : m_map(), m_mutex() in FormatCache()
114 auto i = m_map.find(type), e = m_map.end(); in GetEntry()
117 m_map[type] = FormatCache::Entry(); in GetEntry()
118 return m_map[type]; in GetEntry()
219 m_map.clear(); in Clear()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h83 m_map[name] = entry; in Add()
91 if (iter == m_map.end()) in Delete()
93 m_map.erase(name); in Delete()
101 m_map.clear(); in Clear()
109 if (iter == m_map.end()) in Get()
131 MapIterator iter = m_map.begin(); in GetValueAtIndex()
132 MapIterator end = m_map.end(); in GetValueAtIndex()
144 MapIterator iter = m_map.begin(); in GetKeyAtIndex()
145 MapIterator end = m_map.end(); in GetKeyAtIndex()
156 MapType m_map;
[all …]
H A DTypeCategoryMap.h79 uint32_t GetCount() { return m_map.size(); } in GetCount()
107 MapType m_map; variable
110 MapType &map() { return m_map; } in map()
H A DFormatCache.h69 CacheMap m_map; variable
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DTypeSystem.cpp160 : m_mutex(), m_map(), m_clear_in_progress(false) {} in TypeSystemMap()
168 map = m_map; in Clear()
182 m_map.clear(); in Clear()
192 for (auto pair : m_map) { in ForEach()
206 collection::iterator pos = m_map.find(language); in GetTypeSystemForLanguage()
207 if (pos != m_map.end()) in GetTypeSystemForLanguage()
210 for (const auto &pair : m_map) { in GetTypeSystemForLanguage()
233 collection::iterator pos = m_map.find(language); in GetTypeSystemForLanguage()
234 if (pos != m_map.end()) in GetTypeSystemForLanguage()
237 for (const auto &pair : m_map) { in GetTypeSystemForLanguage()
[all …]
/freebsd-12.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-12.1/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DMaterializer.h32 : m_materializer(nullptr), m_map(nullptr), in Dematerializer()
43 return m_materializer && m_map && in IsValid()
52 : m_materializer(&materializer), m_map(&map), in Dematerializer()
63 IRMemoryMap *m_map; variable
/freebsd-12.1/sys/dev/bxe/
H A Dbxe.c2836 if (rx_buf->m_map != NULL) { in bxe_tpa_start()
6136 if (fp->rx_mbuf_chain[i].m_map != NULL) { in bxe_free_rx_bd_chain()
6311 if (rx_buf->m_map != NULL) { in bxe_alloc_rx_bd_mbuf()
6328 if (rx_buf->m_map != NULL) { in bxe_alloc_rx_bd_mbuf()
6336 fp->rx_mbuf_chain[prev_index].m_map : rx_buf->m_map; in bxe_alloc_rx_bd_mbuf()
6337 rx_buf->m_map = fp->rx_mbuf_spare_map; in bxe_alloc_rx_bd_mbuf()
6388 if (tpa_info->bd.m_map != NULL) { in bxe_alloc_rx_tpa_mbuf()
6395 map = tpa_info->bd.m_map; in bxe_alloc_rx_tpa_mbuf()
6452 if (sge_buf->m_map != NULL) { in bxe_alloc_rx_sge_mbuf()
6459 map = sge_buf->m_map; in bxe_alloc_rx_sge_mbuf()
[all …]
H A Dbxe.h542 bus_dmamap_t m_map; member
551 bus_dmamap_t m_map; member
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DMaterializer.cpp1403 ExecutionContextScope *exe_scope = m_map->GetBestExecutionContextScope(); in Dematerialize()
1420 entity_up->DumpToLog(*m_map, m_process_address, log); in Dematerialize()
1424 entity_up->Dematerialize(frame_sp, *m_map, m_process_address, frame_top, in Dematerialize()
1440 entity_up->Wipe(*m_map, m_process_address); in Wipe()
1444 m_map = nullptr; in Wipe()
/freebsd-12.1/sys/vm/
H A Dvm_fault.c284 vm_page_t m, m_map; in vm_fault_soft_fast() local
299 m_map = m; in vm_fault_soft_fast()
324 m_map = m_super; in vm_fault_soft_fast()
333 rv = pmap_enter(fs->map->pmap, vaddr, m_map, prot, fault_type | in vm_fault_soft_fast()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DTypeSystem.h523 collection m_map; variable