| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/ |
| D | UniqueCStringMap.h | 75 m_map.push_back (typename UniqueCStringMap<T>::Entry(unique_cstr, value)); in Append() 81 m_map.push_back (e); in Append() 87 m_map.clear(); in Clear() 98 m_map.insert (std::upper_bound (m_map.begin(), m_map.end(), e), e); in Insert() 104 m_map.insert (std::upper_bound (m_map.begin(), m_map.end(), e), e); in Insert() 116 if (idx < m_map.size()) in GetValueAtIndex() 118 value = m_map[idx].value; in GetValueAtIndex() 127 return m_map[idx].cstring; in GetCStringAtIndexUnchecked() 135 return m_map[idx].value; in GetValueAtIndexUnchecked() 143 return m_map[idx].value; in GetValueRefAtIndexUnchecked() [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| D | NameToDIE.cpp | 27 m_map.Sort (); in Finalize() 28 m_map.SizeToFit (); in Finalize() 34 m_map.Append(name.GetCString(), die_offset); in Insert() 40 return m_map.GetValues (name.GetCString(), info_array); in Find() 46 return m_map.GetValues (regex, info_array); in Find() 55 const uint32_t size = m_map.GetSize(); in FindAllEntriesForCompileUnit() 58 const uint32_t die_offset = m_map.GetValueAtIndexUnchecked(i); in FindAllEntriesForCompileUnit() 68 const uint32_t size = m_map.GetSize(); in Dump() 71 const char *cstr = m_map.GetCStringAtIndex(i); in Dump() 72 s->Printf("%p: {0x%8.8x} \"%s\"\n", cstr, m_map.GetValueAtIndexUnchecked(i), cstr); in Dump() [all …]
|
| D | NameToDIE.h | 27 m_map() in NameToDIE() 61 lldb_private::UniqueCStringMap<uint32_t> m_map;
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/DataFormatters/ |
| D | TypeCategoryMap.cpp | 28 m_map(), in TypeCategoryMap() 41 m_map[name] = entry; in Add() 50 MapIterator iter = m_map.find(name); in Delete() 51 if (iter == m_map.end()) in Delete() 53 m_map.erase(name); in Delete() 126 m_map.clear(); in Clear() 136 MapIterator iter = m_map.find(name); in Get() 137 if (iter == m_map.end()) in Get() 147 MapIterator iter = m_map.begin(); in Get() 148 MapIterator end = m_map.end(); in Get() [all …]
|
| D | FormatCache.cpp | 125 m_map(), in FormatCache() 136 auto i = m_map.find(type), in GetEntry() 137 e = m_map.end(); in GetEntry() 140 m_map[type] = FormatCache::Entry(); in GetEntry() 141 return m_map[type]; in GetEntry() 229 m_map.clear(); in Clear()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ |
| D | FormattersContainer.h | 120 m_map(), in FormatMap() 136 m_map[name] = entry; in Add() 145 MapIterator iter = m_map.find(name); in Delete() 146 if (iter == m_map.end()) in Delete() 148 m_map.erase(name); in Delete() 158 m_map.clear(); in Clear() 168 MapIterator iter = m_map.find(name); in Get() 169 if (iter == m_map.end()) in Get() 181 MapIterator pos, end = m_map.end(); in LoopThrough() 182 for (pos = m_map.begin(); pos != end; pos++) in LoopThrough() [all …]
|
| D | TypeCategoryMap.h | 94 return m_map.size(); in GetCount() 129 MapType m_map; variable 134 return m_map; in map()
|
| D | FormatCache.h | 73 CacheMap m_map; variable
|
| /freebsd-10-stable/contrib/atf/atf-c/detail/ |
| D | map.c | 108 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()
|
| D | map.h | 40 const struct atf_map *m_map; member 60 struct atf_map *m_map; member
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ |
| D | Materializer.h | 36 m_map(NULL), in Dematerializer() 55 return m_materializer && m_map && (m_process_address != LLDB_INVALID_ADDRESS); in IsValid() 65 m_map(&map), in Dematerializer() 78 IRMemoryMap *m_map; variable
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Expression/ |
| D | Materializer.cpp | 1364 ExecutionContextScope *exe_scope = m_map->GetBestExecutionContextScope(); in Dematerialize() 1383 entity_up->DumpToLog(*m_map, m_process_address, log); in Dematerialize() 1390 …*>(m_materializer->m_result_entity)->Dematerialize (result_sp, frame_sp, *m_map, m_process_address… in Dematerialize() 1394 … entity_up->Dematerialize (frame_sp, *m_map, m_process_address, frame_top, frame_bottom, error); in Dematerialize() 1413 entity_up->Wipe (*m_map, m_process_address); in Wipe() 1417 m_map = NULL; in Wipe()
|
| /freebsd-10-stable/sys/dev/bxe/ |
| D | bxe.c | 2844 if (rx_buf->m_map != NULL) { in bxe_tpa_start() 2845 bus_dmamap_sync(fp->rx_mbuf_tag, rx_buf->m_map, in bxe_tpa_start() 2847 bus_dmamap_unload(fp->rx_mbuf_tag, rx_buf->m_map); in bxe_tpa_start() 3467 bus_dmamap_unload(fp->tx_mbuf_tag, tx_buf->m_map); in bxe_free_tx_pkt() 5187 tx_buf->m_map, m0, in bxe_tx_encap() 5207 tx_buf->m_map, m0, in bxe_tx_encap() 5230 bus_dmamap_unload(fp->tx_mbuf_tag, tx_buf->m_map); in bxe_tx_encap() 5259 bus_dmamap_unload(fp->tx_mbuf_tag, tx_buf->m_map); in bxe_tx_encap() 5270 tx_buf->m_map, m0, in bxe_tx_encap() 5284 bus_dmamap_unload(fp->tx_mbuf_tag, tx_buf->m_map); in bxe_tx_encap() [all …]
|
| D | bxe.h | 539 bus_dmamap_t m_map; member 548 bus_dmamap_t m_map; member
|