Searched defs:conjunction (Results 1 – 5 of 5) sorted by relevance
38 struct conjunction : std::true_type {}; struct
43 struct conjunction : true_type {}; struct
62 template <typename...> struct conjunction : std::true_type {}; struct
122 struct conjunction : std::true_type {}; struct125 struct conjunction<B1> : B1 {}; struct128 struct conjunction<B1, B2> : std::conditional<B1::value, B2, B1>::type {}; struct131 struct conjunction<B1, Bs...> : std::conditional<B1::value, conjunction<Bs...>, B1>::type {}; struct
958 HloInstruction* conjunction) { in TrySimplifyTautologicalCompare()