Searched defs:p1 (Results 1 - 25 of 671) 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
H A Darm64-neon-header.c5 int16x8_t foo(int8x8_t p0, int16x8_t p1) { argument
6 return vqmovun_high_s16(p0, p1); // expected-warning {{incompatible vector types returning 'uint8x16_t'}}
/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.cpp27 A* p1 = new A(1); local
28 std::auto_ptr<A> ap1(p1);
33 assert(ap2.get() == p1);
H A Dconvert_from_auto_ptr_ref.pass.cpp27 B* p1 = new B(1); local
28 std::auto_ptr<B> ap1(p1);
31 assert(ap2.get() == p1);
H A Dconvert_to_auto_ptr_ref.pass.cpp26 B* p1 = new B(1); local
27 std::auto_ptr<B> ap1(p1);
31 assert(ap2.get() == p1);
33 delete p1;
/external/libcxx/test/std/utilities/smartptr/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.cpp24 P1 p1 = std::make_pair(3, static_cast<short>(4)); local
25 assert(p1.first == 3);
26 assert(p1.second == 4);
32 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), static_cast<short>(4)); local
33 assert(*p1.first == 3);
34 assert(p1.second == 4);
38 P1 p1 = std::make_pair(nullptr, static_cast<short>(4)); local
39 assert(p1.first == nullptr);
40 assert(p1.second == 4);
46 constexpr P1 p1 local
[all...]
/external/llvm/test/MC/Hexagon/instructions/
H A Dcr.s6 p3 = !fastcorner9(p2, p1)
8 p1 = fastcorner9(p2, p3) define
12 p1 = any8(p2) define
14 p1 = all8(p2) define
46 p1 = and(p3, p2) define
48 p1 = and(p2, and(p3, p3)) define
50 p1 = or(p3, p2) define
52 p1 = and(p2, or(p3, p3)) define
54 p1 = xor(p2, p3) define
56 p1 define
58 p1 = and(p2, !p3) define
60 p1 = or(p2, or(p3, p3)) define
62 p1 = and(p2, and(p3, !p3)) define
64 p1 = and(p2, or(p3, !p3)) define
66 p1 = not(p2) define
68 p1 = or(p2, and(p3, !p3)) define
70 p1 = or(p2, !p3) define
72 p1 = or(p2, or(p3, !p3)) define
[all...]
/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.cpp27 A* p1 = new A(1); local
28 std::auto_ptr<A> ap1(p1);
32 assert(ap1.get() == p1);
38 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.cpp27 B* p1 = new B(1); local
28 std::auto_ptr<B> ap1(p1);
33 assert(ap1.get() == p1);
40 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/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 549 milliseconds

1234567891011>>