Home
last modified time | relevance | path

Searched refs:unordered_set (Results 1 – 25 of 1654) sorted by relevance

12345678910>>...67

/external/angle/third_party/vulkan-deps/spirv-tools/src/test/opt/
Dregister_liveness.cpp34 void CompareSets(const std::unordered_set<Instruction*>& computed, in CompareSets()
35 const std::unordered_set<uint32_t>& expected) { in CompareSets()
126 std::unordered_set<uint32_t> live_in{ in TEST_F()
133 std::unordered_set<uint32_t> live_out{ in TEST_F()
142 std::unordered_set<uint32_t> live_inout{ in TEST_F()
152 std::unordered_set<uint32_t> live_in{ in TEST_F()
158 std::unordered_set<uint32_t> live_out{ in TEST_F()
168 std::unordered_set<uint32_t> live_in{ in TEST_F()
175 std::unordered_set<uint32_t> live_out{}; in TEST_F()
428 std::unordered_set<uint32_t> live_in{ in TEST_F()
[all …]
/external/swiftshader/third_party/SPIRV-Tools/test/opt/
Dregister_liveness.cpp34 void CompareSets(const std::unordered_set<Instruction*>& computed, in CompareSets()
35 const std::unordered_set<uint32_t>& expected) { in CompareSets()
126 std::unordered_set<uint32_t> live_in{ in TEST_F()
133 std::unordered_set<uint32_t> live_out{ in TEST_F()
142 std::unordered_set<uint32_t> live_inout{ in TEST_F()
152 std::unordered_set<uint32_t> live_in{ in TEST_F()
158 std::unordered_set<uint32_t> live_out{ in TEST_F()
168 std::unordered_set<uint32_t> live_in{ in TEST_F()
175 std::unordered_set<uint32_t> live_out{}; in TEST_F()
428 std::unordered_set<uint32_t> live_in{ in TEST_F()
[all …]
/external/deqp-deps/SPIRV-Tools/test/opt/
Dregister_liveness.cpp34 void CompareSets(const std::unordered_set<Instruction*>& computed, in CompareSets()
35 const std::unordered_set<uint32_t>& expected) { in CompareSets()
126 std::unordered_set<uint32_t> live_in{ in TEST_F()
133 std::unordered_set<uint32_t> live_out{ in TEST_F()
142 std::unordered_set<uint32_t> live_inout{ in TEST_F()
152 std::unordered_set<uint32_t> live_in{ in TEST_F()
158 std::unordered_set<uint32_t> live_out{ in TEST_F()
168 std::unordered_set<uint32_t> live_in{ in TEST_F()
175 std::unordered_set<uint32_t> live_out{}; in TEST_F()
428 std::unordered_set<uint32_t> live_in{ in TEST_F()
[all …]
/external/llvm-project/libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/
Ddeduct.pass.cpp65 std::unordered_set s(std::begin(arr), std::end(arr)); in main()
67 ASSERT_SAME_TYPE(decltype(s), std::unordered_set<int>); in main()
73 std::unordered_set s(std::begin(arr), std::end(arr), 42); in main()
75 ASSERT_SAME_TYPE(decltype(s), std::unordered_set<int>); in main()
81 std::unordered_set s(std::begin(arr), std::end(arr), 42, std::hash<long long>()); in main()
83 ASSERT_SAME_TYPE(decltype(s), std::unordered_set<int, std::hash<long long>>); in main()
89 …std::unordered_set s(std::begin(arr), std::end(arr), 42, std::hash<long long>(), test_allocator<in… in main()
91 …ASSERT_SAME_TYPE(decltype(s), std::unordered_set<int, std::hash<long long>, std::equal_to<int>, te… in main()
97 std::unordered_set<int, std::hash<long long>, std::equal_to<>, test_allocator<int>> source; in main()
98 std::unordered_set s(source); in main()
[all …]
Ddeduct.fail.cpp58 std::unordered_set s; in main()
63 std::unordered_set s(42); in main()
68 std::unordered_set s(42, std::hash<int>()); in main()
73 std::unordered_set s(42, std::hash<int>(), std::equal_to<>()); in main()
78 std::unordered_set s(42, std::hash<int>(), std::equal_to<>(), std::allocator<int>()); in main()
83 std::unordered_set s(std::allocator<int>{}); in main()
88 std::unordered_set s(42, std::allocator<int>()); in main()
93 std::unordered_set s(42, std::hash<short>(), std::allocator<int>()); in main()
/external/llvm-project/libcxx/benchmarks/
Dunordered_set_operations.bench.cpp154 std::unordered_set<uint32_t>{},
159 std::unordered_set<uint32_t>{},
165 std::unordered_set<uint32_t>{},
170 std::unordered_set<uint32_t, UInt32Hash>{},
176 std::unordered_set<std::string>{},
181 std::unordered_set<std::string>{},
191 std::unordered_set<uint64_t>{},
196 std::unordered_set<uint64_t, UInt64Hash>{},
202 std::unordered_set<uint64_t>{},
207 std::unordered_set<uint64_t, UInt64Hash>{},
[all …]
/external/libcxx/benchmarks/
Dunordered_set_operations.bench.cpp154 std::unordered_set<uint32_t>{},
159 std::unordered_set<uint32_t>{},
165 std::unordered_set<uint32_t>{},
170 std::unordered_set<uint32_t, UInt32Hash>{},
176 std::unordered_set<std::string>{},
181 std::unordered_set<std::string>{},
191 std::unordered_set<uint64_t>{},
196 std::unordered_set<uint64_t, UInt64Hash>{},
202 std::unordered_set<uint64_t>{},
207 std::unordered_set<uint64_t, UInt64Hash>{},
[all …]
/external/tensorflow/tensorflow/cc/tools/
Dfreeze_saved_model_test.cc39 SignatureDef BuildSignatureDef(const std::unordered_set<string>& inputs, in BuildSignatureDef()
40 const std::unordered_set<string>& outputs) { in BuildSignatureDef()
89 const GraphDef& graph_def, const std::unordered_set<string>& outputs, in AddGraphDefWithOutputsToSavedModelBundle()
92 BuildSignatureDef(std::unordered_set<string>(), outputs); in AddGraphDefWithOutputsToSavedModelBundle()
146 std::unordered_set<string> inputs; in TestFreezeGraphWithoutDependentVariables()
147 std::unordered_set<string> outputs; in TestFreezeGraphWithoutDependentVariables()
191 std::unordered_set<string> inputs; in TestFreezeGraphWithDependentVariables()
192 std::unordered_set<string> outputs; in TestFreezeGraphWithDependentVariables()
252 std::unordered_set<string> inputs; in TestFreezeGraphWithAndWithoutDependentVariables()
253 std::unordered_set<string> outputs; in TestFreezeGraphWithAndWithoutDependentVariables()
[all …]
Dfreeze_saved_model.cc37 std::unordered_set<string>* tensor_names) { in GetTensorNamesFromTensorInfo()
57 std::unordered_set<string>* inputs, std::unordered_set<string>* outputs) { in GetSignatureDefsInputsAndOutputs()
91 GraphDef* graph_def, const std::unordered_set<string>& outputs, in GetReachableNodesAndVariables()
93 std::unordered_set<string>* reachable_node_names, in GetReachableNodesAndVariables()
94 std::unordered_set<string>* variable_node_names) { in GetReachableNodesAndVariables()
96 static const std::unordered_set<string>* kVariableTypes = in GetReachableNodesAndVariables()
97 new std::unordered_set<string>({"Variable", "VariableV2", "VarHandleOp"}); in GetReachableNodesAndVariables()
125 std::unordered_set<string> variable_names_set, in GetVariableNameToTensorMap()
176 const std::unordered_set<string>& outputs, in FreezeGraphDef()
191 std::unordered_set<string> reachable_node_names; in FreezeGraphDef()
[all …]
/external/libcxx/include/
Dunordered_set2 //===-------------------------- unordered_set -----------------------------===//
16 unordered_set synopsis
25 class unordered_set
49 unordered_set()
54 explicit unordered_set(size_type n, const hasher& hf = hasher(),
58 unordered_set(InputIterator f, InputIterator l,
62 explicit unordered_set(const allocator_type&);
63 unordered_set(const unordered_set&);
64 unordered_set(const unordered_set&, const Allocator&);
65 unordered_set(unordered_set&&)
[all …]
/external/libcxx/test/std/containers/unord/unord.set/unord.set.swap/
Dswap_noexcept.pass.cpp125 typedef std::unordered_set<MoveOnly> C; in main()
130 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main()
135 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main()
141 typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>> C; in main()
145 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main()
152 …typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc <MoveOn… in main()
156 …typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc2<MoveOn… in main()
160 …typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc <MoveOn… in main()
164 …typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc2<MoveOn… in main()
168 …typedef std::unordered_set<MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_alloc <MoveO… in main()
[all …]
Ddb_swap_1.pass.cpp31 std::unordered_set<int> c1(a1, a1+sizeof(a1)/sizeof(a1[0])); in main()
32 std::unordered_set<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0])); in main()
33 std::unordered_set<int>::iterator i1 = c1.begin(); in main()
34 std::unordered_set<int>::iterator i2 = c2.begin(); in main()
38 std::unordered_set<int>::iterator j = i1; in main()
/external/llvm-project/libcxx/test/std/containers/unord/unord.set/unord.set.swap/
Dswap_noexcept.pass.cpp124 typedef std::unordered_set<MoveOnly> C; in main()
129 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main()
134 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main()
140 typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>> C; in main()
144 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main()
151 …typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc <MoveOn… in main()
155 …typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc2<MoveOn… in main()
159 …typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc <MoveOn… in main()
163 …typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc2<MoveOn… in main()
167 …typedef std::unordered_set<MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_alloc <MoveO… in main()
[all …]
/external/llvm-project/libcxx/include/
Dunordered_set2 //===-------------------------- unordered_set -----------------------------===//
15 unordered_set synopsis
24 class unordered_set
48 unordered_set()
53 explicit unordered_set(size_type n, const hasher& hf = hasher(),
57 unordered_set(InputIterator f, InputIterator l,
61 explicit unordered_set(const allocator_type&);
62 unordered_set(const unordered_set&);
63 unordered_set(const unordered_set&, const Allocator&);
64 unordered_set(unordered_set&&)
[all …]
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Ddead_branch_elim_pass.h84 std::unordered_set<BasicBlock*>* live_blocks);
94 const std::unordered_set<BasicBlock*>& live_blocks,
95 std::unordered_set<BasicBlock*>* unreachable_merges,
111 Function* func, const std::unordered_set<BasicBlock*>& live_blocks,
127 Function* func, const std::unordered_set<BasicBlock*>& live_blocks,
128 const std::unordered_set<BasicBlock*>& unreachable_merges,
159 std::unordered_set<BasicBlock*>* blocks_with_back_edges);
Dconvert_to_half_pass.h124 std::unordered_set<uint32_t> target_ops_core_;
127 std::unordered_set<uint32_t> target_ops_450_;
130 std::unordered_set<uint32_t> image_ops_;
133 std::unordered_set<uint32_t> dref_image_ops_;
136 std::unordered_set<uint32_t> closure_ops_;
139 std::unordered_set<uint32_t> relaxed_ids_set_;
142 std::unordered_set<uint32_t> converted_ids_;
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Ddead_branch_elim_pass.h84 std::unordered_set<BasicBlock*>* live_blocks);
94 const std::unordered_set<BasicBlock*>& live_blocks,
95 std::unordered_set<BasicBlock*>* unreachable_merges,
111 Function* func, const std::unordered_set<BasicBlock*>& live_blocks,
127 Function* func, const std::unordered_set<BasicBlock*>& live_blocks,
128 const std::unordered_set<BasicBlock*>& unreachable_merges,
159 std::unordered_set<BasicBlock*>* blocks_with_back_edges);
Dconvert_to_half_pass.h124 std::unordered_set<uint32_t> target_ops_core_;
127 std::unordered_set<uint32_t> target_ops_450_;
130 std::unordered_set<uint32_t> image_ops_;
133 std::unordered_set<uint32_t> dref_image_ops_;
136 std::unordered_set<uint32_t> closure_ops_;
139 std::unordered_set<uint32_t> relaxed_ids_set_;
142 std::unordered_set<uint32_t> converted_ids_;
/external/deqp-deps/SPIRV-Tools/source/opt/
Ddead_branch_elim_pass.h84 std::unordered_set<BasicBlock*>* live_blocks);
94 const std::unordered_set<BasicBlock*>& live_blocks,
95 std::unordered_set<BasicBlock*>* unreachable_merges,
111 Function* func, const std::unordered_set<BasicBlock*>& live_blocks,
127 Function* func, const std::unordered_set<BasicBlock*>& live_blocks,
128 const std::unordered_set<BasicBlock*>& unreachable_merges,
159 std::unordered_set<BasicBlock*>* blocks_with_back_edges);
Dconvert_to_half_pass.h124 std::unordered_set<uint32_t> target_ops_core_;
127 std::unordered_set<uint32_t> target_ops_450_;
130 std::unordered_set<uint32_t> image_ops_;
133 std::unordered_set<uint32_t> dref_image_ops_;
136 std::unordered_set<uint32_t> closure_ops_;
139 std::unordered_set<uint32_t> relaxed_ids_set_;
142 std::unordered_set<uint32_t> converted_ids_;
/external/llvm-project/libcxx/include/experimental/
Dunordered_set2 //===------------------------- unordered_set ------------------------------===//
13 experimental/unordered_set synopsis
22 using unordered_set = std::unordered_set<T, Hash, Pred,
37 #include <unordered_set>
48 using unordered_set = _VSTD::unordered_set<_Value, _Hash, _Pred,
/external/libcxx/include/experimental/
Dunordered_set2 //===------------------------- unordered_set ------------------------------===//
14 experimental/unordered_set synopsis
23 using unordered_set = std::unordered_set<T, Hash, Pred,
38 #include <unordered_set>
49 using unordered_set = _VSTD::unordered_set<_Value, _Hash, _Pred,
/external/llvm-project/libcxx/test/libcxx/containers/unord/unord.set/
Ddb_swap_1.pass.cpp30 std::unordered_set<int> c1(a1, a1+sizeof(a1)/sizeof(a1[0])); in main()
31 std::unordered_set<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0])); in main()
32 std::unordered_set<int>::iterator i1 = c1.begin(); in main()
33 std::unordered_set<int>::iterator i2 = c2.begin(); in main()
37 std::unordered_set<int>::iterator j = i1; in main()
/external/libcxx/test/std/experimental/memory/memory.resource.aliases/
Dheader_unordered_set_synop.pass.cpp48 using StdSet = std::unordered_set<V, DH, DP, pmr::polymorphic_allocator<V>>; in main()
49 using PmrSet = pmr::unordered_set<V>; in main()
53 using StdSet = std::unordered_set<V, MH, DP, pmr::polymorphic_allocator<V>>; in main()
54 using PmrSet = pmr::unordered_set<V, MH>; in main()
58 using StdSet = std::unordered_set<V, MH, MP, pmr::polymorphic_allocator<V>>; in main()
59 using PmrSet = pmr::unordered_set<V, MH, MP>; in main()
63 pmr::unordered_set<int> m; in main()
/external/llvm-project/libcxx/test/std/experimental/memory/memory.resource.aliases/
Dheader_unordered_set_synop.pass.cpp48 using StdSet = std::unordered_set<V, DH, DP, pmr::polymorphic_allocator<V>>; in main()
49 using PmrSet = pmr::unordered_set<V>; in main()
53 using StdSet = std::unordered_set<V, MH, DP, pmr::polymorphic_allocator<V>>; in main()
54 using PmrSet = pmr::unordered_set<V, MH>; in main()
58 using StdSet = std::unordered_set<V, MH, MP, pmr::polymorphic_allocator<V>>; in main()
59 using PmrSet = pmr::unordered_set<V, MH, MP>; in main()
63 pmr::unordered_set<int> m; in main()

12345678910>>...67