/third_party/boost/libs/spirit/classic/test/ |
D | multi_pass_tests.cpp | 91 boost::scoped_ptr<default_multi_pass_t> mp2(new default_multi_pass_t(b)); in test_default_multi_pass() local 93 *mp3 = *mp2; in test_default_multi_pass() 97 res << **mp2; in test_default_multi_pass() 98 ++*mp2; in test_default_multi_pass() 103 while (*mp2 != *mpend) in test_default_multi_pass() 105 res << **mp2; in test_default_multi_pass() 106 ++*mp2; in test_default_multi_pass() 117 boost::scoped_ptr<default_multi_pass_t> mp2(new default_multi_pass_t(*mp1)); in test_default_multi_pass() local 125 while (*mp2 != *mpend) in test_default_multi_pass() 127 res << **mp2; in test_default_multi_pass() [all …]
|
/third_party/gettext/gettext-tools/src/ |
D | msgl-equal.c | 133 message_equal (const message_ty *mp1, const message_ty *mp2, in message_equal() argument 139 ? mp2->msgctxt != NULL && strcmp (mp1->msgctxt, mp2->msgctxt) == 0 in message_equal() 140 : mp2->msgctxt == NULL)) in message_equal() 143 if (strcmp (mp1->msgid, mp2->msgid) != 0) in message_equal() 147 ? mp2->msgid_plural != NULL in message_equal() 148 && strcmp (mp1->msgid_plural, mp2->msgid_plural) == 0 in message_equal() 149 : mp2->msgid_plural == NULL)) in message_equal() 154 mp2->msgstr, mp2->msgstr_len) in message_equal() 156 mp2->msgstr, mp2->msgstr_len)) in message_equal() 159 if (!pos_equal (&mp1->pos, &mp2->pos)) in message_equal() [all …]
|
D | x-ruby.c | 165 message_ty *mp2 = in extract_ruby() local 168 if (mp2 != NULL && mp2->comment_dot != NULL) in extract_ruby() 170 string_list_ty *mp2_comment_dot = mp2->comment_dot; in extract_ruby()
|
D | msgl-equal.h | 39 message_equal (const message_ty *mp1, const message_ty *mp2,
|
/third_party/ffmpeg/tests/ref/acodec/ |
D | mp2 | 1 f6eb0a205350bbd7fb1028a01c7ae8aa *tests/data/fate/acodec-mp2.mp2 2 96130 tests/data/fate/acodec-mp2.mp2 3 74c7b6b15a001add199619fafe4059a1 *tests/data/fate/acodec-mp2.out.wav
|
D | mp2fixed | 1 05445de0f0305df85db4ed0ce94e5f4c *tests/data/fate/acodec-mp2fixed.mp2 2 288391 tests/data/fate/acodec-mp2fixed.mp2
|
/third_party/skia/resources/sksl/runtime/ |
D | PrecisionQualifiers.rts | 15 mediump vec2 mp2 = vec2(2); 16 highp vec2 hp2 = mp2; 29 return mp2 == hp2 && hp3 == mp3 && mp4 == hp4 && 34 mediump mat2 mp2 = mat2(2); 35 highp mat2 hp2 = mp2; 41 return mp2 == hp2 && hp3 == mp3 && mp4 == hp4;
|
/third_party/skia/tests/sksl/runtime/ |
D | PrecisionQualifiers.stage | 20 half2 mp2 = half2(2.0); 21 float2 hp2 = float2(mp2); 32 …return ((((float2(mp2) == hp2 && hp3 == float3(mp3)) && float4(mp4) == hp4) && int2(imp2) == ihp2)… 36 half2x2 mp2 = half2x2(2.0); 37 float2x2 hp2 = float2x2(mp2); 42 return (float2x2(mp2) == hp2 && hp3 == float3x3(mp3)) && float4x4(mp4) == hp4;
|
D | PrecisionQualifiers.skvm | 31 $30 = mp2 (float2 : slot 1/2, L15) 32 $31 = mp2 (float2 : slot 2/2, L15) 67 $66 = mp2 (float2x2 : slot 1/4, L34) 68 $67 = mp2 (float2x2 : slot 2/4, L34) 69 $68 = mp2 (float2x2 : slot 3/4, L34) 70 $69 = mp2 (float2x2 : slot 4/4, L34)
|
/third_party/boost/boost/polygon/detail/ |
D | polygon_45_touch.hpp | 19 …static inline void merge_property_maps(property_map& mp, const property_map& mp2, bool subtract = … in merge_property_maps() 21 newmp.reserve(mp.size() + mp2.size()); in merge_property_maps() 24 while(i != mp.size() && j != mp2.size()) { in merge_property_maps() 25 if(mp[i].first < mp2[j].first) { in merge_property_maps() 28 } else if(mp[i].first > mp2[j].first) { in merge_property_maps() 29 newmp.push_back(mp2[j]); in merge_property_maps() 34 if(subtract) count -= mp2[j].second; in merge_property_maps() 35 else count += mp2[j].second; in merge_property_maps() 48 while(j != mp2.size()) { in merge_property_maps() 49 newmp.push_back(mp2[j]); in merge_property_maps()
|
D | property_merge_45.hpp | 19 …static inline void merge_property_maps(property_map& mp, const property_map& mp2, bool subtract = … in merge_property_maps() 20 polygon_45_touch<Unit>::merge_property_maps(mp, mp2, subtract); in merge_property_maps()
|
/third_party/boost/libs/geometry/test/algorithms/intersects/ |
D | intersects_multi.cpp | 33 typedef bg::model::multi_polygon<polygon2> mp2; in test_all() typedef 35 test_geometry<mp1, mp2>("MULTIPOLYGON(((0 0,0 10,10 10,10 0,0 0)))", in test_all() 39 test_geometry<P1, mp2>("POINT(0 0)", in test_all()
|
/third_party/boost/libs/geometry/test/algorithms/distance/ |
D | distance.cpp | 277 typedef bg::model::multi_point<P2> mp2; in test_mixed() typedef 282 test_distance<P1, mp2>("POINT(0 0)", "MULTIPOINT((1 1),(1 0),(0 2))", 1.0); in test_mixed() 284 test_distance<P2, mp2>("POINT(0 0)", "MULTIPOINT((1 1),(1 0),(0 2))", 1.0); in test_mixed() 289 test_distance<mp2, P1>("MULTIPOINT((1 1),(1 0),(0 2))", "POINT(0 0)", 1.0); in test_mixed() 290 test_distance<mp2, P2>("MULTIPOINT((1 1),(1 0),(0 2))", "POINT(0 0)", 1.0); in test_mixed() 293 test_distance<mp1, mp2>("MULTIPOINT((1 1),(1 0),(0 2))", "MULTIPOINT((2 2),(2 3))", sqrt(2.0)); in test_mixed() 301 test_distance<P1, mp2>(pythagoras<>(), "POINT(0 0)", "MULTIPOINT((1 1),(1 0),(0 2))", 1.0); in test_mixed() 303 test_distance<P2, mp2>(pythagoras<>(), "POINT(0 0)", "MULTIPOINT((1 1),(1 0),(0 2))", 1.0); in test_mixed() 308 test_distance<mp2, P1>(pythagoras<>(), "MULTIPOINT((1 1),(1 0),(0 2))", "POINT(0 0)", 1.0); in test_mixed() 309 test_distance<mp2, P2>(pythagoras<>(), "MULTIPOINT((1 1),(1 0),(0 2))", "POINT(0 0)", 1.0); in test_mixed()
|
D | distance_brute_force.hpp | 854 MultiPoint2 const& mp2, in apply() 865 >::apply(mp1, boost::begin(mp2), boost::end(mp2), strategy); in apply() 1057 MultiPolygon2 const& mp2, in apply() 1068 >::apply(mp1, boost::begin(mp2), boost::end(mp2), strategy); in apply()
|
/third_party/boost/libs/geometry/test/algorithms/set_operations/ |
D | test_set_ops_pointlike.hpp | 94 MultiPoint2 mp2(multipoint2); in apply() local 98 std::sort(mp2.begin(), mp2.end(), in apply() 101 if ( boost::size(mp1) != boost::size(mp2) ) in apply() 107 BOOST_AUTO_TPL(it2, boost::begin(mp2)); in apply()
|
/third_party/boost/libs/geometry/test/algorithms/detail/ |
D | partition.cpp | 227 bg::model::multi_point<point_item> mp1, mp2; in test_points() local 229 bg::read_wkt(wkt2, mp2); in test_points() 235 BOOST_FOREACH(point_item& p, mp2) in test_points() 242 >::apply(mp1, mp2, visitor, get_point(), ovelaps_point(), in test_points() 348 bg::model::multi_point<point_item> mp1, mp2; in test_many_points() local 351 fill_points(mp2, seed * 2, size, count); in test_many_points() 357 BOOST_FOREACH(point_item const& item2, mp2) in test_many_points() 392 >::apply(mp1, mp2, visitor, get_point(), ovelaps_point(), in test_many_points() 402 BOOST_FOREACH(point_item const& item, mp2) in test_many_points()
|
/third_party/boost/libs/geometry/test/geometries/ |
D | multi_point.cpp | 69 bg::model::multi_point<P> mp1(create_multi_point<P>()), mp2; in test_copy_assignment() local 70 mp2 = mp1; in test_copy_assignment() 71 check_multi_point(mp2, 1, 2, 3); in test_copy_assignment()
|
/third_party/boost/libs/type_traits/test/ |
D | is_member_obj_test.cpp | 15 typedef const double (UDT::*mp2) ; 29 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_object_pointer<mp2>::value, true);
|
/third_party/ffmpeg/tests/fate/ |
D | acodec.mak | 102 FATE_ACODEC-$(call ENCDEC, MP2, MP2 MP3) += fate-acodec-mp2 103 fate-acodec-mp2: FMT = mp2 104 fate-acodec-mp2: CMP_SHIFT = -1924 105 fate-acodec-mp2: ENCOPTS = -b:a 128k 108 fate-acodec-mp2fixed: FMT = mp2
|
D | lavf-container.mak | 27 fate-lavf-asf: CMD = lavf_container "" "-c:a mp2 -ar 44100" "-r 25" 28 fate-lavf-avi fate-lavf-nut: CMD = lavf_container "" "-c:a mp2 -ar 44100 -threads 1" 38 fate-lavf-mkv: CMD = lavf_container "" "-c:a mp2 -c:v mpeg4 -ar 44100 -threads 1" 39 fate-lavf-mkv_attachment: CMD = lavf_container_attach "-c:a mp2 -c:v mpeg4 -threads 1 -f matroska" 54 fate-lavf-wtv: CMD = lavf_container "" "-c:a mp2 -threads 1"
|
/third_party/ffmpeg/tests/ref/fate/ |
D | pva-demux | 8 #codec_id 1: mp2
|
/third_party/iptables/iptables/ |
D | nft-shared.c | 931 struct xtables_rule_match *mp2; in compare_matches() local 933 for (mp1 = mt1, mp2 = mt2; mp1 && mp2; mp1 = mp1->next, mp2 = mp2->next) { in compare_matches() 935 struct xt_entry_match *m2 = mp2->match->m; in compare_matches() 955 if (mp1 != mp2) { in compare_matches()
|
/third_party/ffmpeg/doc/examples/ |
D | Makefile.example | 47 $(RM) test*.pgm test.h264 test.mp2 test.sw test.mpg
|
/third_party/boost/libs/units/example/ |
D | systems.cpp | 747 quantity<torr_pressure> mp2(1.0*torrs); in BOOST_UNITS_DEFINE_SINGLE_UNIT_SYSTEM() local 752 << mp2 << " = " << quantity<si::pressure>(mp2) << std::endl in BOOST_UNITS_DEFINE_SINGLE_UNIT_SYSTEM() 758 … << mp4 << "/" << mp2 << " = " << quantity<si::dimensionless>(mp4/mp2) << std::endl in BOOST_UNITS_DEFINE_SINGLE_UNIT_SYSTEM() 763 << mp2 << " = " << quantity<mmHg_pressure>(mp2) << std::endl in BOOST_UNITS_DEFINE_SINGLE_UNIT_SYSTEM() 769 << mp2 << " = " << quantity<torr_pressure>(mp2) << std::endl in BOOST_UNITS_DEFINE_SINGLE_UNIT_SYSTEM() 775 << mp2 << " = " << quantity<bar_pressure>(mp2) << std::endl in BOOST_UNITS_DEFINE_SINGLE_UNIT_SYSTEM() 781 << mp2 << " = " << quantity<atmosphere_pressure>(mp2) << std::endl in BOOST_UNITS_DEFINE_SINGLE_UNIT_SYSTEM()
|
/third_party/gstreamer/gstreamer/tests/check/gst/ |
D | gstutils.c | 843 mpz_t mp1, mp2, mp3; in gmp_scale() local 848 mpz_init (mp2); in gmp_scale() 853 mpz_mul (mp2, mp1, mp3); in gmp_scale() 858 mpz_add (mp1, mp2, mp3); in gmp_scale() 859 mpz_set (mp2, mp1); in gmp_scale() 864 mpz_add (mp1, mp2, mp3); in gmp_scale() 865 mpz_set (mp2, mp1); in gmp_scale() 871 mpz_tdiv_q (mp1, mp2, mp3); in gmp_scale() 874 mpz_clear (mp2); in gmp_scale()
|