/third_party/ffmpeg/libavcodec/ |
D | cinepak.c | 139 char *ip0, *ip1, *ip2, *ip3; in cinepak_decode_vectors() local 147 ip0 = ip1 = ip2 = ip3 = s->frame->data[0] + in cinepak_decode_vectors() 150 ip1 = ip0 + s->frame->linesize[0]; in cinepak_decode_vectors() 152 ip2 = ip1 + s->frame->linesize[0]; in cinepak_decode_vectors() 192 ip1[0] = ip1[1] = ip0[0] = ip0[1] = p[0]; in cinepak_decode_vectors() 193 ip1[2] = ip1[3] = ip0[2] = ip0[3] = p[3]; in cinepak_decode_vectors() 202 memcpy(ip1 + 0, p, 3); memcpy(ip1 + 3, p, 3); in cinepak_decode_vectors() 205 memcpy(ip1 + 6, p, 3); memcpy(ip1 + 9, p, 3); in cinepak_decode_vectors() 229 p = ip1; in cinepak_decode_vectors() 244 memcpy(ip1 + 0, cb0 + 6, 6); in cinepak_decode_vectors() [all …]
|
/third_party/lwip/test/unit/udp/ |
D | test_udp.c | 342 ip_addr_t ip1; in START_TEST() local 349 ip_addr_set_any_val(0, ip1); in START_TEST() 355 err1 = udp_bind(pcb1, &ip1, 2105); in START_TEST() 365 ip_addr_set_any_val(0, ip1); in START_TEST() 371 err1 = udp_bind(pcb1, &ip1, 2105); in START_TEST() 381 ip_addr_set_any_val(1, ip1); in START_TEST() 387 err1 = udp_bind(pcb1, &ip1, 2105); in START_TEST() 397 ip_addr_set_any_val(0, ip1); in START_TEST() 403 err1 = udp_bind(pcb1, &ip1, 2105); in START_TEST() 413 IP_ADDR4(&ip1, 1, 2, 3, 4); in START_TEST() [all …]
|
/third_party/boost/libs/geometry/test/strategies/ |
D | segment_intersection_sph.hpp | 65 P const& ip0 = P(), P const& ip1 = P(), in test_strategy_one() argument 132 BOOST_CHECK_MESSAGE(equals_relaxed(res_i1, ip1, eps_scale), in test_strategy_one() 133 …"IP1: " << std::setprecision(16) << bg::wkt(res_i1) << " different than expected: " << bg::wkt(ip1) in test_strategy_one() 162 P const& ip0 = P(), P const& ip1 = P(), in test_strategy() argument 168 P ip1t = ip1; in test_strategy() 183 bg::set<0>(ip1t, translated(bg::get<0>(ip1), t)); in test_strategy() 199 P ip0, ip1; in test_strategy() local 206 bg::read_wkt(ip1_wkt, ip1); in test_strategy() 208 test_strategy(s1, s2, strategy, m, expected_count, ip0, ip1, opposite_id); in test_strategy()
|
/third_party/python/Lib/test/ |
D | test_ipaddress.py | 1219 ip1 = ipaddress.IPv4Address('10.10.10.10') 1222 self.assertEqual(list(ipaddress._find_address_range([ip1])), 1223 [(ip1, ip1)]) 1224 self.assertEqual(list(ipaddress._find_address_range([ip1, ip3])), 1225 [(ip1, ip1), (ip3, ip3)]) 1226 self.assertEqual(list(ipaddress._find_address_range([ip1, ip2, ip3])), 1227 [(ip1, ip3)]) 1750 ip1 = ipaddress.IPv4Address('1.1.1.0') 1758 [ip1, ip2, ip3, ip4, ip5, ip6]) 1764 ip1 = ipaddress.IPv4Address('1.1.1.0') [all …]
|
D | test_generators.py | 1475 ip1 = i+1 1477 for x in gen(ip1): 1490 ip1, ip2, ip3 = i+1, i+2, i+3 1496 for values[ip1] in g1(): 1504 for values[ip1] in g1():
|
/third_party/boost/boost/geometry/strategies/geographic/ |
D | intersection_elliptic.hpp | 99 Point3d & ip1, Point3d & ip2) const in intersection_points() 107 ip1 = formula::projected_to_surface(id, m_spheroid); in intersection_points() 109 ip2 = ip1; in intersection_points() 199 Point3d & ip1, Point3d & ip2) const in intersection_points() 203 ip1, ip2, m_spheroid); in intersection_points()
|
/third_party/boost/boost/geometry/strategies/spherical/ |
D | intersection.hpp | 636 Vec3d ip1, ip2; in calculate_ip_data() local 637 calc_policy.intersection_points(plane1, plane2, ip1, ip2); in calculate_ip_data() 639 calculate_dist(a1v, a2v, plane1, ip1, dist_a1_ip); in calculate_ip_data() 640 ip = ip1; in calculate_ip_data() 943 Point3d & ip1, Point3d & ip2) in intersection_points() 947 ip1 = cross_product(plane1.normal, plane2.normal); in intersection_points() 952 coord_t const len = math::sqrt(dot_product(ip1, ip1)); in intersection_points() 953 divide_value(ip1, len); // normalize i1 in intersection_points() 955 ip2 = ip1; in intersection_points()
|
/third_party/iowow/src/kv/tests/ |
D | iwkv_test9.c | 29 unsigned char ip1[4] = { 1, 0, 142, 235 }; in iwkv_test9_1() local 31 ikey.data = ip1; in iwkv_test9_1()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/memory/ |
D | memory_test.cc | 114 explicit MoveOnly(int i1) : ip1{new int{i1}} {} in MoveOnly() 115 MoveOnly(int i1, int i2) : ip1{new int{i1}}, ip2{new int{i2}} {} in MoveOnly() 116 std::unique_ptr<int> ip1; member 131 EXPECT_TRUE(!p->ip1); in TEST() 138 EXPECT_TRUE(p->ip1 && *p->ip1 == 1); in TEST() 145 EXPECT_TRUE(p->ip1 && *p->ip1 == 1); in TEST()
|
/third_party/abseil-cpp/absl/memory/ |
D | memory_test.cc | 114 explicit MoveOnly(int i1) : ip1{new int{i1}} {} in MoveOnly() 115 MoveOnly(int i1, int i2) : ip1{new int{i1}}, ip2{new int{i2}} {} in MoveOnly() 116 std::unique_ptr<int> ip1; member 131 EXPECT_TRUE(!p->ip1); in TEST() 138 EXPECT_TRUE(p->ip1 && *p->ip1 == 1); in TEST() 145 EXPECT_TRUE(p->ip1 && *p->ip1 == 1); in TEST()
|
/third_party/boost/libs/hana/include/boost/hana/detail/ |
D | algorithm.hpp | 49 BidirIter ip1 = i; in next_permutation() local 50 if (pred(*--i, *ip1)) { in next_permutation() 55 detail::reverse(ip1, last); in next_permutation()
|
/third_party/boost/boost/hana/detail/ |
D | algorithm.hpp | 49 BidirIter ip1 = i; in next_permutation() local 50 if (pred(*--i, *ip1)) { in next_permutation() 55 detail::reverse(ip1, last); in next_permutation()
|
/third_party/lz4/tests/ |
D | roundTripTest.c | 63 const char* const ip1 = (const char*)buff1; in checkBuffers() local 68 if (ip1[pos]!=ip2[pos]) in checkBuffers()
|
/third_party/boost/boost/geometry/algorithms/detail/overlay/ |
D | get_turn_info_la.hpp | 718 linear_intersections::ip_info const& ip1 = intersections.template get<1>(); in get_turn_info_for_endpoint() local 798 …&& ( ip_count > 1 ? (ip1.is_pj && !ip1.is_qi) : (ip0.is_pj && !ip0.is_qi) ) ) // prevents duplicat… in get_turn_info_for_endpoint() 847 … tp.method = ( ip_count > 1 ? ip1.is_qj : ip0.is_qj ) ? method_touch : method_touch_interior; in get_turn_info_for_endpoint()
|
/third_party/boost/libs/numeric/ublas/test/ |
D | test_fixed_containers.cpp | 140 auto ip1 = inner_prod( v1, v1); in test_vector() local 142 pass &= ( ip == ip1 ) ; in test_vector()
|
/third_party/boost/boost/geometry/formulas/ |
D | geographic.hpp | 330 Point3d & ip1, Point3d & ip2, in planes_spheroid_intersection() argument 370 if (! projected_to_surface(io, id, ip1, ip2, spheroid)) in planes_spheroid_intersection()
|
/third_party/python/PC/ |
D | launcher.c | 425 INSTALLED_PYTHON * ip1 = (INSTALLED_PYTHON *) p1; in compare_pythons() local 429 ip2->version, -1, ip1->version, -1); in compare_pythons() 437 return ip2->bits - ip1->bits; /* 64 before 32 */ in compare_pythons()
|
/third_party/openssl/crypto/des/asm/ |
D | des_enc.m4 | 633 define({ip1},{local1}) 640 ld [out2+256], ip1 660 and local0, ip1, local0 725 and temp1, ip1, temp1
|
/third_party/node/src/ |
D | cares_wrap.cc | 1808 node::Utf8Value ip1(isolate, args[1]); in SetLocalAddress() local 1810 if (uv_inet_pton(AF_INET, *ip1, &addr1) == 0) { in SetLocalAddress() 1817 } else if (uv_inet_pton(AF_INET6, *ip1, &addr1) == 0) { in SetLocalAddress()
|