Home
last modified time | relevance | path

Searched refs:Comp (Results 1 – 25 of 182) sorted by relevance

12345678

/external/google-fruit/include/fruit/impl/
Dcomponent_functors.defn.h55 template <typename Comp>
57 using type = F(Comp, Args...);
64 template <typename Comp>
67 using Result = Comp;
80 template <typename Comp>
82 using Op1 = F1(Comp);
138 template <typename Comp, typename AnnotatedI, typename AnnotatedC>
140 … using Comp1 = ConsComp(typename Comp::RsSuperset, typename Comp::Ps, typename Comp::NonConstRsPs,
142 typename Comp::Deps,
144 … PushFront(typename Comp::InterfaceBindings, Pair<AnnotatedI, AnnotatedC>),
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DParallel.h85 const Comparator &Comp) { in medianOf3() argument
87 return Comp(*Start, *(End - 1)) in medianOf3()
88 ? (Comp(*Mid, *(End - 1)) ? (Comp(*Start, *Mid) ? Mid : Start) in medianOf3()
90 : (Comp(*Mid, *Start) ? (Comp(*(End - 1), *Mid) ? Mid : End - 1) in medianOf3()
96 const Comparator &Comp, TaskGroup &TG, size_t Depth) { in parallel_quick_sort() argument
99 llvm::sort(Start, End, Comp); in parallel_quick_sort()
104 auto Pivot = medianOf3(Start, End, Comp); in parallel_quick_sort()
107 Pivot = std::partition(Start, End - 1, [&Comp, End](decltype(*Start) V) { in parallel_quick_sort()
108 return Comp(V, *(End - 1)); in parallel_quick_sort()
114 TG.spawn([=, &Comp, &TG] { in parallel_quick_sort()
[all …]
/external/google-fruit/include/fruit/impl/meta/
Dcomponent.h527 struct Comp {
568 using type = Comp<RsSupersetParam, PsParam, NonConstRsPsParam,
577 template <typename Comp>
579 using type = typename Comp::Deps;
584 template <typename Comp>
586 using type = typename Comp::Ps;
591 template <typename Comp>
593 using type = typename Comp::RsSuperset;
598 template <typename Comp>
600 using type = typename Comp::NonConstRsPs;
[all …]
/external/walt/hardware/kicad/
DWALTsm.sch42 Comp ""
48 $Comp
59 $Comp
70 $Comp
81 $Comp
102 $Comp
113 $Comp
124 $Comp
135 $Comp
146 $Comp
[all …]
/external/llvm-project/llvm/include/llvm/Support/
DParallel.h81 const Comparator &Comp) { in medianOf3() argument
83 return Comp(*Start, *(End - 1)) in medianOf3()
84 ? (Comp(*Mid, *(End - 1)) ? (Comp(*Start, *Mid) ? Mid : Start) in medianOf3()
86 : (Comp(*Mid, *Start) ? (Comp(*(End - 1), *Mid) ? Mid : End - 1) in medianOf3()
92 const Comparator &Comp, TaskGroup &TG, size_t Depth) { in parallel_quick_sort() argument
95 llvm::sort(Start, End, Comp); in parallel_quick_sort()
100 auto Pivot = medianOf3(Start, End, Comp); in parallel_quick_sort()
103 Pivot = std::partition(Start, End - 1, [&Comp, End](decltype(*Start) V) { in parallel_quick_sort()
104 return Comp(V, *(End - 1)); in parallel_quick_sort()
110 TG.spawn([=, &Comp, &TG] { in parallel_quick_sort()
[all …]
/external/libcxx/test/std/containers/associative/set/set.cons/
Dcompare_copy_constructible.fail.cpp18 struct Comp { struct
21 Comp () {} in Comp() argument
23 Comp (const Comp &); // declared but not defined
28 std::set<int, Comp<int> > m; in main()
/external/libcxx/test/std/containers/associative/multimap/multimap.cons/
Dcompare_copy_constructible.fail.cpp18 struct Comp { struct
21 Comp () {} in Comp() function
23 Comp (const Comp &); // declared but not defined
28 std::multimap<int, int, Comp<int> > m; in main()
/external/llvm-project/libcxx/test/std/containers/associative/map/map.cons/
Dcompare_copy_constructible.compile.fail.cpp20 struct Comp { struct
23 Comp () {} in Comp() argument
25 Comp (const Comp &); // declared but not defined
30 std::map<int, int, Comp<int> > m; in main()
/external/llvm-project/libcxx/test/std/containers/associative/multimap/multimap.cons/
Dcompare_copy_constructible.compile.fail.cpp20 struct Comp { struct
23 Comp () {} in Comp() function
25 Comp (const Comp &); // declared but not defined
30 std::multimap<int, int, Comp<int> > m; in main()
/external/llvm-project/libcxx/test/std/containers/associative/multiset/multiset.cons/
Dcompare_copy_constructible.compile.fail.cpp20 struct Comp { struct
23 Comp () {} in Comp() function
25 Comp (const Comp &); // declared but not defined
30 std::multiset<int, Comp<int> > m; in main()
/external/libcxx/test/std/containers/associative/multiset/multiset.cons/
Dcompare_copy_constructible.fail.cpp18 struct Comp { struct
21 Comp () {} in Comp() argument
23 Comp (const Comp &); // declared but not defined
28 std::multiset<int, Comp<int> > m; in main()
/external/libcxx/test/std/containers/associative/map/map.cons/
Dcompare_copy_constructible.fail.cpp18 struct Comp { struct
21 Comp () {} in Comp() argument
23 Comp (const Comp &); // declared but not defined
28 std::map<int, int, Comp<int> > m; in main()
/external/llvm-project/libcxx/test/std/containers/associative/set/set.cons/
Dcompare_copy_constructible.compile.fail.cpp20 struct Comp { struct
23 Comp () {} in Comp() function
25 Comp (const Comp &); // declared but not defined
30 std::set<int, Comp<int> > m; in main()
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.cnstr/
Dcompare_copy_constructible.fail.cpp21 struct Comp { struct
24 Comp () {} in Comp() function
26 Comp (const Comp &); // declared but not defined
31 std::unordered_multimap<int, int, std::hash<int>, Comp<int> > m; in main()
/external/libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/
Dcompare_copy_constructible.fail.cpp18 struct Comp { struct
21 Comp () {} in Comp() function
23 Comp (const Comp &); // declared but not defined
28 std::unordered_set<int, std::hash<int>, Comp<int> > m; in main()
Dallocator.pass.cpp69 typedef test_compare<std::equal_to<T>> Comp; in main() typedef
71 typedef std::unordered_set<T, HF, Comp, A> C; in main()
77 assert(c.key_eq() == Comp ()); in main()
89 typedef test_compare<std::equal_to<T>> Comp; in main() typedef
91 typedef std::unordered_set<T, HF, Comp, A> C; in main()
99 assert(c.key_eq() == Comp ()); in main()
/external/llvm-project/libcxx/test/std/containers/unord/unord.multiset/unord.multiset.cnstr/
Dcompare_copy_constructible.compile.fail.cpp20 struct Comp { struct
23 Comp () {} in Comp() argument
25 Comp (const Comp &); // declared but not defined
30 std::unordered_multiset<int, std::hash<int>, Comp<int> > m; in main()
Dallocator.pass.cpp68 typedef test_compare<std::equal_to<T>> Comp; in main() typedef
70 typedef std::unordered_multiset<T, HF, Comp, A> C; in main()
76 assert(c.key_eq() == Comp ()); in main()
88 typedef test_compare<std::equal_to<T>> Comp; in main() typedef
90 typedef std::unordered_multiset<T, HF, Comp, A> C; in main()
98 assert(c.key_eq() == Comp ()); in main()
/external/libcxx/test/std/containers/unord/unord.map/unord.map.cnstr/
Dcompare_copy_constructible.fail.cpp21 struct Comp { struct
24 Comp () {} in Comp() argument
26 Comp (const Comp &); // declared but not defined
31 std::unordered_map<int, int, std::hash<int>, Comp<int> > m; in main()
/external/libcxx/test/std/containers/unord/unord.multiset/unord.multiset.cnstr/
Dcompare_copy_constructible.fail.cpp18 struct Comp { struct
21 Comp () {} in Comp() argument
23 Comp (const Comp &); // declared but not defined
28 std::unordered_multiset<int, std::hash<int>, Comp<int> > m; in main()
Dallocator.pass.cpp69 typedef test_compare<std::equal_to<T>> Comp; in main() typedef
71 typedef std::unordered_multiset<T, HF, Comp, A> C; in main()
77 assert(c.key_eq() == Comp ()); in main()
89 typedef test_compare<std::equal_to<T>> Comp; in main() typedef
91 typedef std::unordered_multiset<T, HF, Comp, A> C; in main()
99 assert(c.key_eq() == Comp ()); in main()
/external/llvm-project/libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/
Dcompare_copy_constructible.compile.fail.cpp20 struct Comp { struct
23 Comp () {} in Comp() argument
25 Comp (const Comp &); // declared but not defined
30 std::unordered_set<int, std::hash<int>, Comp<int> > m; in main()
Dallocator.pass.cpp68 typedef test_compare<std::equal_to<T>> Comp; in main() typedef
70 typedef std::unordered_set<T, HF, Comp, A> C; in main()
76 assert(c.key_eq() == Comp ()); in main()
88 typedef test_compare<std::equal_to<T>> Comp; in main() typedef
90 typedef std::unordered_set<T, HF, Comp, A> C; in main()
98 assert(c.key_eq() == Comp ()); in main()
/external/llvm-project/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.cnstr/
Dcompare_copy_constructible.compile.fail.cpp23 struct Comp { struct
26 Comp () {} in Comp() function
28 Comp (const Comp &); // declared but not defined
33 std::unordered_multimap<int, int, std::hash<int>, Comp<int> > m; in main()
/external/llvm-project/libcxx/test/std/containers/unord/unord.map/unord.map.cnstr/
Dcompare_copy_constructible.compile.fail.cpp23 struct Comp { struct
26 Comp () {} in Comp() argument
28 Comp (const Comp &); // declared but not defined
33 std::unordered_map<int, int, std::hash<int>, Comp<int> > m; in main()

12345678