Home
last modified time | relevance | path

Searched refs:unordered_map (Results 1 – 25 of 93) sorted by relevance

1234

/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dunordered_map24 class unordered_map
49 unordered_map()
68 unordered_map(const unordered_map&);
69 unordered_map(const unordered_map&, const Allocator&);
70 unordered_map(unordered_map&&)
75 unordered_map(unordered_map&&, const Allocator&);
102 unordered_map& operator=(const unordered_map&);
103 unordered_map& operator=(unordered_map&&)
1616 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
1634 unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::unordered_map(
[all …]
H A Dversion22 <set> <string> <unordered_map>
29 __cpp_lib_associative_heterogeneous_erasure 202110L <map> <set> <unordered_map>
31 __cpp_lib_associative_heterogeneous_insertion 202306L <map> <set> <unordered_map>
88 … <unordered_map> <unordered_set> <vector>
111 __cpp_lib_generic_unordered_lookup 201811L <unordered_map> <unordered_set>
151 __cpp_lib_node_extract 201606L <map> <set> <unordered_map>
156 … <unordered_map> <unordered_set> <vector>
181 … <unordered_map> <unordered_set> <vector>
231 __cpp_lib_tuple_like 202311L <map> <tuple> <unordered_map>
238 __cpp_lib_unordered_map_try_emplace 201411L <unordered_map>
/freebsd-14.2/usr.sbin/pmc/
H A Dcmd_pmc_summary.cc74 using std::unordered_map;
75 typedef unordered_map <int, std::string> idmap;
76 typedef unordered_map <uint32_t, uint64_t> intmap;
77 typedef unordered_map <std::string, intmap> strintmap;
80 typedef unordered_map <uint32_t, std::vector<samplename>> eventcountmap;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DSampleProfileProbe.h34 using BlockIdMap = std::unordered_map<BasicBlock *, uint32_t>;
35 using InstructionIdMap = std::unordered_map<Instruction *, uint32_t>;
38 using ProbeFactorMap = std::unordered_map<std::pair<uint64_t, uint64_t>, float,
H A DSampleContextTracker.h143 HashKeyMap<std::unordered_map, FunctionId, ContextSamplesTy>
208 HashKeyMap<std::unordered_map, FunctionId, ContextSamplesTy>
212 std::unordered_map<const FunctionSamples *, ContextTrieNode *>
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-registry.cpp21 static std::unordered_map<cl::SubCommand *, HandlerType> &getCommands() { in getCommands()
22 static std::unordered_map<cl::SubCommand *, HandlerType> Commands; in getCommands()
H A Dfunc-id-helper.h26 using FunctionAddressMap = std::unordered_map<int32_t, uint64_t>;
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkUtilRegistry.cpp20 static std::unordered_map<cl::SubCommand *, HandlerType> &getCommands() { in getCommands()
21 static std::unordered_map<cl::SubCommand *, HandlerType> Commands; in getCommands()
/freebsd-14.2/contrib/llvm-project/libcxx/modules/std/
H A Dunordered_map.inc12 using std::unordered_map;
25 using std::pmr::unordered_map;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/Inclusions/
H A DHeaderIncludes.h120 std::unordered_map<int, llvm::SmallVector<const Include *, 8>>
135 std::unordered_map<int, int> CategoryEndOffsets;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DELFAttributeParser.h26 std::unordered_map<unsigned, unsigned> attributes;
27 std::unordered_map<unsigned, StringRef> attributesStr;
/freebsd-14.2/usr.bin/dtc/
H A Dfdt.hh78 typedef std::unordered_map<std::string, property_ptr> define_map;
764 std::unordered_map<std::string, node_ptr> node_names;
768 std::unordered_map<std::string, node_ptr> node_name_parents;
774 std::unordered_map<std::string, node_path> node_paths;
838 std::unordered_map<uint32_t, node_ptr> used_phandles;
H A Dchecking.hh259 std::unordered_map<std::string, checker*> checkers;
264 std::unordered_map<std::string, checker*> disabled_checkers;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCPseudoProbe.h103 std::unordered_map<uint64_t, MCPseudoProbeFuncDesc>;
106 std::unordered_map<uint64_t, std::list<MCDecodedPseudoProbe>>;
224 using InlinedProbeTreeMap = std::unordered_map<
304 using MCProbeDivisionMap = std::unordered_map<MCSymbol *, MCPseudoProbeInlineTree>;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h230 std::unordered_map<const DILocalScope *, LexicalScope> LexicalScopeMap;
234 std::unordered_map<std::pair<const DILocalScope *, const DILocation *>,
241 std::unordered_map<const DILocalScope *, LexicalScope> AbstractScopeMap;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/XRay/
H A DInstrumentationMap.h77 using FunctionAddressMap = std::unordered_map<int32_t, uint64_t>;
78 using FunctionAddressReverseMap = std::unordered_map<uint64_t, int32_t>;
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.h111 std::unordered_map<size_t, CoverageVector> Functions;
131 std::unordered_map<std::string, std::vector<uint8_t>> Traces;
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DSourcePrinter.h136 std::unordered_map<std::string, std::unique_ptr<MemoryBuffer>> SourceCache;
138 std::unordered_map<std::string, std::vector<StringRef>> LineCache;
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanStack.h112 std::unordered_map<size_t, PlanStack> m_completed_plan_store;
180 using PlansList = std::unordered_map<lldb::tid_t, ThreadPlanStack>;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TraceExporter/common/
H A DTraceHTR.h239 std::unordered_map<lldb::addr_t, std::optional<ConstString>> m_call_isns;
293 std::unordered_map<size_t, HTRBlock> m_block_defs;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.h145 std::unordered_map<uint32_t, StringRef> FuncArgNames;
150 const std::unordered_map<uint32_t, StringRef> &FuncArgNames);
298 std::unordered_map<const DIType *, uint32_t> DIToIdMap;
327 const std::unordered_map<uint32_t, StringRef> &FuncArgNames,
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSpecialSymbolMap.inc78 SYMBOL(begin, std::, <unordered_map>)
92 SYMBOL(cbegin, std::, <unordered_map>)
106 SYMBOL(cend, std::, <unordered_map>)
134 SYMBOL(crend, std::, <unordered_map>)
148 SYMBOL(data, std::, <unordered_map>)
162 SYMBOL(empty, std::, <unordered_map>)
176 SYMBOL(end, std::, <unordered_map>)
190 SYMBOL(rbegin, std::, <unordered_map>)
204 SYMBOL(rend, std::, <unordered_map>)
218 SYMBOL(size, std::, <unordered_map>)
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_redefine_builtins.h47 using unordered_map = Define_SANITIZER_COMMON_NO_REDEFINE_BUILTINS_in_cpp_file; variable
/freebsd-14.2/contrib/ofed/libibnetdisc/
H A Dg_hash_table.cpp44 UM_NAMESPACE::unordered_map<void *, void *> map;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DAuxVector.h72 std::unordered_map<uint64_t, uint64_t> m_auxv_entries;

1234