Home
last modified time | relevance | path

Searched refs:eq1 (Results 1 – 13 of 13) sorted by relevance

/third_party/boost/libs/hana/test/
Dcomparable.cpp19 struct eq1 { int value; }; argument
22 constexpr operator eq1() const { return {value}; } in operator eq1()
26 (std::is_same<T, eq1>{} || std::is_same<T, eq2>{}) &&
27 (std::is_same<U, eq1>{} || std::is_same<U, eq2>{})
33 (std::is_same<T, eq1>{} || std::is_same<T, eq2>{}) &&
34 (std::is_same<U, eq1>{} || std::is_same<U, eq2>{})
51 BOOST_HANA_CONSTEXPR_CHECK(hana::equal(eq1{0}, eq1{0})); in main()
52 BOOST_HANA_CONSTEXPR_CHECK(hana::not_(hana::equal(eq1{0}, eq1{1}))); in main()
53 BOOST_HANA_CONSTEXPR_CHECK(hana::not_(hana::equal(eq1{1}, eq1{0}))); in main()
55 BOOST_HANA_CONSTEXPR_CHECK(hana::equal(eq1{0}, eq2{0})); in main()
[all …]
/third_party/boost/boost/geometry/strategies/cartesian/
Dpoint_in_poly_winding.hpp140 bool eq1 = false; in apply() local
143 int count = check_segment(point, s1, s2, state, eq1, eq2); in apply()
149 side = side_equal(point, eq1 ? s1 : s2, count); in apply()
188 bool& eq1, bool& eq2) in check_segment() argument
190 if (check_touch(point, seg1, seg2, state, eq1, eq2)) in check_segment()
195 return calculate_count(point, seg1, seg2, eq1, eq2); in check_segment()
203 bool& eq1, bool& eq2) in check_touch() argument
211 eq1 = math::equals(s1x, px); in check_touch()
216 if (eq1 && eq2) in check_touch()
234 bool eq1, bool eq2) in calculate_count() argument
[all …]
Dturn_in_ring_winding.hpp190 bool const eq1 = s1x == px; in apply() local
196 int const multiplier = eq1 || eq2 ? 1 : 2; in apply()
/third_party/boost/boost/geometry/strategies/spherical/
Dpoint_in_poly_winding.hpp181 bool eq1 = false; in apply() local
185 count_info ci = check_segment(point, s1, s2, state, eq1, eq2, s_antipodal); in apply()
193 side = side_equal(point, eq1 ? s1 : s2, ci); in apply()
264 bool& eq1, bool& eq2, bool& s_antipodal) in check_segment() argument
266 if (check_touch(point, seg1, seg2, state, eq1, eq2, s_antipodal)) in check_segment()
271 return calculate_count(point, seg1, seg2, eq1, eq2, s_antipodal); in check_segment()
279 bool& eq1, in check_touch() argument
311 eq1 = eq1_strict // lon strictly equal to s1 in check_touch()
323 eq1 = eq2 = eq1 || eq2; in check_touch()
328 eq1 = eq2 = true; in check_touch()
[all …]
/third_party/boost/libs/unordered/test/unordered/
Dassign_tests.cpp73 typename T::key_equal eq1(1); in assign_tests2() local
84 T x1(0, hf1, eq1); in assign_tests2()
88 BOOST_TEST(test::equivalent(x1.key_eq(), eq1)); in assign_tests2()
90 BOOST_TEST(test::equivalent(x2.key_eq(), eq1)); in assign_tests2()
99 T x1(v.begin(), v.end(), 0, hf1, eq1); in assign_tests2()
103 BOOST_TEST(test::equivalent(x1.key_eq(), eq1)); in assign_tests2()
105 BOOST_TEST(test::equivalent(x2.key_eq(), eq1)); in assign_tests2()
118 T x2(v2.begin(), v2.end(), 0, hf1, eq1); in assign_tests2()
134 T x1(v1.begin(), v1.end(), 0, hf1, eq1, al1); in assign_tests2()
138 BOOST_TEST(test::equivalent(x2.key_eq(), eq1)); in assign_tests2()
[all …]
Dconstructor_tests.cpp183 typename T::key_equal eq1(1); in constructor_tests2() local
192 T x(10000, hf1, eq1); in constructor_tests2()
195 BOOST_TEST(test::equivalent(x.key_eq(), eq1)); in constructor_tests2()
216 T x(v.begin(), v.end(), 0, hf1, eq1); in constructor_tests2()
218 BOOST_TEST(test::equivalent(x.key_eq(), eq1)); in constructor_tests2()
242 T y(x.begin(), x.end(), 0, hf1, eq1, al2); in constructor_tests2()
253 T x(v.begin(), v.end(), 0, hf1, eq1); in constructor_tests2()
265 T x(v.begin(), v.end(), 0, hf1, eq1); in constructor_tests2()
280 eq1); in constructor_tests2()
295 eq1); in constructor_tests2()
[all …]
/third_party/boost/libs/hana/test/concept/struct/
Dlaws.cpp20 auto eq1 = hana::make_tuple( in main() local
33 hana::test::TestComparable<minimal_struct_tag<1>>{eq1}; in main()
37 hana::test::TestFoldable<minimal_struct_tag<1>>{eq1}; in main()
41 hana::test::TestSearchable<minimal_struct_tag<1>>{eq1, hana::make_tuple(hana::int_c<0>)}; in main()
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Dequalizer.c315 GstElement *eq1, *eq2; in GST_START_TEST() local
319 eq1 = gst_check_setup_element ("equalizer-nbands"); in GST_START_TEST()
320 g_object_set (G_OBJECT (eq1), "num-bands", 3, NULL); in GST_START_TEST()
323 gst_child_proxy_set ((GstChildProxy *) eq1, in GST_START_TEST()
329 gst_preset_save_preset ((GstPreset *) eq1, "_testpreset_"); in GST_START_TEST()
330 GST_INFO_OBJECT (eq1, "Preset saved"); in GST_START_TEST()
337 GST_INFO_OBJECT (eq1, "Preset loaded"); in GST_START_TEST()
356 gst_preset_delete_preset ((GstPreset *) eq1, "_testpreset_"); in GST_START_TEST()
357 gst_check_teardown_element (eq1); in GST_START_TEST()
/third_party/boost/libs/core/test/
Dlightweight_test_test3.cpp17 struct eq1: private boost::noncopyable {}; struct
20 std::ostream& operator<<( std::ostream& os, eq1 const& ) in operator <<()
30 bool operator==( eq1 const&, eq2 const& ) in operator ==()
139 BOOST_TEST_EQ( eq1(), eq2() ); in main()
/third_party/boost/boost/geometry/strategies/agnostic/
Dpoint_in_poly_oriented_winding.hpp135 bool eq1 = math::equals(s1, p); in check_segment() local
138 if (eq1 && eq2) in check_segment()
146 eq1 ? (s2 > p ? 1 : -1) // Point on level s1, UP/DOWN depending on s2 in check_segment()
/third_party/pcre2/pcre2/src/
Dpcre2_jit_neon_inc.h199 vect_t eq1 = VCEQQ(data, vc1); in FF_FUN() local
201 vect_t eq = VORRQ(eq1, eq2); in FF_FUN()
275 eq1 = VCEQQ(data, vc1); in FF_FUN()
277 eq = VORRQ(eq1, eq2); in FF_FUN()
/third_party/boost/libs/multi_index/test/
Dtest_composite_key.cpp442 ckey_eq_t1 eq1; in DEFINE_TUPLE_MAKER() local
444 BOOST_TEST(is_equiv (ck1(xyz(0,0,0)),ck2(xyz(0,0,0)),cp1,eq1)); in DEFINE_TUPLE_MAKER()
445 BOOST_TEST(is_less (ck1(xyz(0,0,1)),ck2(xyz(0,1,0)),cp1,eq1)); in DEFINE_TUPLE_MAKER()
446 BOOST_TEST(is_greater(ck1(xyz(0,0,1)),ck2(xyz(0,0,0)),cp1,eq1)); in DEFINE_TUPLE_MAKER()
461 BOOST_TEST(is_equiv (ck1(xyz(0,0,0)),TupleMaker::create(0,0,0),cp1,eq1)); in DEFINE_TUPLE_MAKER()
462 BOOST_TEST(is_less (ck1(xyz(0,0,0)),TupleMaker::create(0,0,1),cp1,eq1)); in DEFINE_TUPLE_MAKER()
463 BOOST_TEST(is_greater(ck1(xyz(0,0,0)),TupleMaker::create(0,0,-1),cp1,eq1)); in DEFINE_TUPLE_MAKER()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp330 bool eq1 = (Block1 == Head1); in CompareIfRegionBlock() local
332 if (eq1 || eq2) { in CompareIfRegionBlock()
334 return (eq1 == eq2); in CompareIfRegionBlock()