Searched defs:p1 (Results 1 - 25 of 455) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dattr-endian.c3 int p1 __attribute__((endian(host))); // expected-warning {{unknown attribute 'endian' ignored}} variable
/external/eigen/doc/snippets/
H A DMatrixBase_all.cpp2 Vector3f p0 = Vector3f::Random(), p1 = Vector3f::Random().cwiseAbs(); variable
3 // let's check if p0 and p1 are inside the axis aligned box defined by the corners boxMin,boxMax:
6 cout << "Is (" << p1.transpose() << ") inside the box: "
7 << ((boxMin.array()<p1.array()).all() && (boxMax.array()>p1.array()).all()) << endl;
/external/clang/test/FixIt/
H A Dno-typo.c6 point p1; // expected-error{{unknown type name 'point'}} variable
/external/compiler-rt/test/asan/TestCases/
H A Datexit_stats.cc13 int *p1 = (int*)malloc(900); variable
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
H A Dassign_from_auto_ptr_ref.pass.cpp25 A* p1 = new A(1); local
26 std::auto_ptr<A> ap1(p1);
31 assert(ap2.get() == p1);
H A Dconvert_from_auto_ptr_ref.pass.cpp25 B* p1 = new B(1); local
26 std::auto_ptr<B> ap1(p1);
29 assert(ap2.get() == p1);
H A Dconvert_to_auto_ptr_ref.pass.cpp24 B* p1 = new B(1); local
25 std::auto_ptr<B> ap1(p1);
27 delete p1;
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.create/
H A Dmake_unique.single.pass.cpp18 std::unique_ptr<int> p1 = std::make_unique<int>(1); local
19 assert ( *p1 == 1 );
20 p1 = std::make_unique<int> ();
21 assert ( *p1 == 0 );
/external/libcxx/test/std/utilities/utility/pairs/pairs.spec/
H A Dmake_pair.pass.cpp22 P1 p1 = std::make_pair(3, 4); local
23 assert(p1.first == 3);
24 assert(p1.second == 4);
30 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), 4); local
31 assert(*p1.first == 3);
32 assert(p1.second == 4);
36 P1 p1 = std::make_pair(nullptr, 4); local
37 assert(p1.first == nullptr);
38 assert(p1.second == 4);
45 constexpr P1 p1 local
[all...]
/external/v8/test/mjsunit/es6/debug-promises/
H A Dthrow-eventually-caught.js17 var p1 = p0.then(function() { variable
21 var p2 = p1.then(function() { });
/external/clang/test/CodeGen/
H A Dincomplete-function-type-2.c5 // CHECK: define void @test10_foo({}* %p1.coerce) [[NUW:#[0-9]+]] {
8 void test10_foo(test10_F3 p1);
14 void test10_foo(test10_F3 p1) argument
16 p1(0.0);
H A Daddress-space-field1.c3 // CHECK:define void @test_addrspace(%struct.S addrspace(1)* %p1, %struct.S addrspace(2)* %p2) [[NUW:#[0-9]+]]
6 // CHECK: store %struct.S addrspace(1)* %p1, %struct.S addrspace(1)** [[p1addr]]
34 void test_addrspace(__addr1 S* p1, __addr2 S*p2) { argument
36 p1->a = p2->b;
37 p1->b = p2->a;
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/
H A Dassignment.fail.cpp25 A* p1 = new A(1); local
26 const std::auto_ptr<A> ap1(p1);
30 assert(ap1.get() == p1);
36 assert(ap2.get() == p1);
H A Dassignment.pass.cpp25 A* p1 = new A(1); local
26 std::auto_ptr<A> ap1(p1);
30 assert(ap1.get() == p1);
36 assert(ap2.get() == p1);
H A Dconvert_assignment.fail.cpp25 B* p1 = new B(1); local
26 const std::auto_ptr<B> ap1(p1);
31 assert(ap1.get() == p1);
38 assert(ap2.get() == p1);
H A Dconvert_assignment.pass.cpp25 B* p1 = new B(1); local
26 std::auto_ptr<B> ap1(p1);
31 assert(ap1.get() == p1);
38 assert(ap2.get() == p1);
/external/valgrind/none/tests/
H A Dmap_unaligned.c7 void *p1; local
10 if ( ( p1 = mmap( 0, 4096, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0 ) ) == MAP_FAILED )
16 if ( munmap( p1, 4096 ) != 0 )
22 // This fails because MAP_FIXED is specified and p1+1 isn't page-aligned.
25 if ( ( p2 = mmap( p1 + 1, 4096, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED, -1, 0 ) ) == MAP_FAILED )
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_CollectionTest.java30 public Support_CollectionTest(String p1) { argument
31 super(p1);
34 public Support_CollectionTest(String p1, Collection<Integer> c) { argument
35 super(p1);
H A DSupport_SetTest.java26 public Support_SetTest(String p1) { argument
27 super(p1);
30 public Support_SetTest(String p1, Set<Integer> s) { argument
31 super(p1);
H A DSupport_UnmodifiableCollectionTest.java34 public Support_UnmodifiableCollectionTest(String p1) { argument
35 super(p1);
38 public Support_UnmodifiableCollectionTest(String p1, Collection<Integer> c) { argument
39 super(p1);
/external/bison/lib/
H A Dc-strcasecmp.c29 register const unsigned char *p1 = (const unsigned char *) s1; local
33 if (p1 == p2)
38 c1 = c_tolower (*p1);
44 ++p1;
/external/clang/test/SemaCXX/
H A Dc99.cpp7 Point p1 = { .x = 17, // expected-warning{{designated initializers are a C99 feature}} variable
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
H A Dparam_assign.pass.cpp30 P p1; local
31 p1 = p0;
32 assert(p1 == p0);
H A Dparam_copy.pass.cpp30 P p1 = p0; local
31 assert(p1 == p0);
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
H A Dparam_assign.pass.cpp30 P p1; local
31 p1 = p0;
32 assert(p1 == p0);

Completed in 7674 milliseconds

1234567891011>>