Searched refs:p2 (Results 1 - 25 of 945) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dfold-addr-1.c4 int bar(char p1, char p2) argument
6 return &p1 == &p2;
H A Dc99-hexfloat-1.c6 double d = 0x1.2p2; /* { dg-bogus "radix 16" "bogus C99 hex float error" } */
H A Dc90-hexfloat-1.c6 double d = 0x1.2p2; /* { dg-bogus "warning" "warning in place of error" } */
10 double d2 = 0x1...p2; /* { dg-bogus "warning" "warning in place of error" } */
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.rfg/
H A D00321_01-.C7 int (*p2)[5]; variable
12 p1 == p2; // { dg-error "comparison between distinct pointer types" } comparison.* local
13 p1 > p2; // { dg-error "comparison between distinct pointer types" } comparison.* local
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/unsorted/
H A Dcmb.c1 foo (p1, p2)
2 short p1, *p2;
5 return (int) p1 + (int) *p2;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.rfg/
H A D00321_01-.C7 int (*p2)[5]; variable
12 p1 == p2; // { dg-error "" } comparison.* local
13 p1 > p2; // { dg-error "" } comparison.* local
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/unsorted/
H A Dcmb.c1 foo (p1, p2)
2 short p1, *p2;
5 return (int) p1 + (int) *p2;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/cpp/
H A Dc99-hexfloat-3.c6 double d = 0x.2p2; /* { dg-bogus "radix 16" "bogus C99 hex float error" } */
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A Dc99-hexfloat-1.c6 double d = 0x1.2p2; /* { dg-bogus "radix 16" "bogus C99 hex float error" } */
H A Dc90-hexfloat-1.c6 double d = 0x1.2p2; /* { dg-bogus "warning" "warning in place of error" } */
10 double d2 = 0x1...p2; /* { dg-bogus "warning" "warning in place of error" } */
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/cpp/
H A Dc99-hexfloat-3.c6 double d = 0x.2p2; /* { dg-bogus "radix 16" "bogus C99 hex float error" } */
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A Dpr26781-1.c3 char *p, *p2; local
4 for (p2 = p; p2; )
H A D930210-1.c4 char *p1, *p2; local
9 *p2++ = *p1++;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/tree-ssa/
H A Dpr27498.c6 char *p, *p2; local
7 for (p2 = p; p2; )
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/vect/
H A Dpr39529.c8 char *p2; local
10 p2 = p + 1024;
16 } while (p < p2);
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/libamu/
H A Dstrstr.c86 char *p2; local
89 for (p2 = s2, i = 0; *s; p2 = s2, i++, s++) {
90 for (p1 = s; *p1 && *p2 && *p1 == *p2; p1++, p2++)
92 if (!*p2)
95 if (!*p2)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/30_threads/packaged_task/cons/
H A Dassign_neg.cc31 std::packaged_task<int()> p2; local
32 p1 = p2;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/30_threads/promise/cons/
H A Dassign_neg.cc31 std::promise<int> p2; local
32 p1 = p2;
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/ia64/
H A Dpred-rel.s3 .pred.rel "mutex", p1, p2
4 .pred.rel "imply", p2, p3
5 .pred.rel "clear", p1, p2, p3
7 .pred.rel "mutex" p1, p2
8 .pred.rel "imply" p2, p3
9 .pred.rel "clear" p1, p2, p3
11 .pred.rel.mutex p1, p2
12 .pred.rel.imply p2, p3
13 .pred.rel.clear p1, p2, p3
15 .pred.rel @mutex, p1, p2
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/20_util/unique_ptr/specialized_algorithms/
H A Dcomparisons.cc42 std::unique_ptr<A> p2; local
44 VERIFY( p1 == p2 );
45 VERIFY( !(p1 != p2) );
46 VERIFY( !(p1 < p2) && !(p1 > p2) );
55 std::unique_ptr<A> p2(new A);
57 VERIFY( p1 != p2 );
58 VERIFY( !(p1 == p2) );
59 VERIFY( (p1 < p2) || (p1 > p2) );
[all...]
H A Dcomparisons_array.cc42 std::unique_ptr<A[]> p2; local
44 VERIFY( p1 == p2 );
45 VERIFY( !(p1 != p2) );
46 VERIFY( !(p1 < p2) && !(p1 > p2) );
55 std::unique_ptr<A[]> p2(new A[3]);
57 VERIFY( p1 != p2 );
58 VERIFY( !(p1 == p2) );
59 VERIFY( (p1 < p2) || (p1 > p2) );
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D930210-1.c4 char *p1, *p2; local
9 *p2++ = *p1++;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900324_03.C18 void function_1 (void (*p2)()); // { dg-bogus "" } s
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/18_support/exception_ptr/
H A Dmove.cc32 std::exception_ptr p2 = std::move(p1); local
34 VERIFY( !(p2 == 0) );
36 p1 = std::move(p2);
38 VERIFY( p2 == 0 );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/30_threads/packaged_task/members/
H A Dswap.cc37 std::packaged_task<int()> p2; local
39 VERIFY( !static_cast<bool>(p2) );
40 p1.swap(p2);
42 VERIFY( static_cast<bool>(p2) );

Completed in 254 milliseconds

1234567891011>>