Searched refs:l1 (Results 1 - 25 of 396) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gfortran.fortran-torture/compile/
H A Dlogical-1.f904 logical(kind=1) :: l1, l2, l3 local in subroutine:whatever
5 if ((l1 .and. l2) .neqv. l3) then
6 l1 = .true.
H A Dlogical-2.f904 logical(kind=1) :: l1 local in subroutine:whatever
7 if ((l1 .and. l2) .neqv. l3) then
8 l1 = .true.
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20021108-1.c6 l1:
7 return &&l1-&&l2;
H A Dpr21728.c5 __label__ l1; local
8 goto l1;
11 l1:;
H A Dlabels-3.c7 static const short ar[] = { &&l1 - &&l1, &&l2 - &&l1 };
8 void *p = &&l1 + ar[a];
10 l1:
H A D20000518-1.c7 __label__ l1; local
9 callit1(&&l1);
11 l1:;
/haiku-buildtools/gcc/gcc/testsuite/gfortran.fortran-torture/execute/
H A Dpr43390.f901 logical :: l1(4) variable
3 l1 = (/.TRUE.,.FALSE.,.TRUE.,.FALSE./)
5 if (dot_product (l1, l2)) call abort ()
7 if (.not.dot_product (l1, l2)) call abort ()
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/mips/
H A Dfpr-moves-3.c7 register double l1 asm ("$8") = d;
9 asm ("#foo" : "=d" (l1) : "d" (l1));
11 return l1;
H A Dfpr-moves-4.c7 register double l1 asm ("$8") = d;
9 asm ("#foo" : "=d" (l1) : "d" (l1));
11 return l1;
H A Dumips-swp-1.c5 foo (long long l1, long long *l2) argument
7 *l2 = l1;
H A Dfpr-moves-1.c13 register double l1 asm ("$8") = d;
15 asm ("#foo" : "=d" (l1) : "d" (l1));
17 return l1;
H A Dfpr-moves-2.c13 register double l1 asm ("$8") = d;
15 asm ("#foo" : "=d" (l1) : "d" (l1));
17 return l1;
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/powerpc/
H A Ddarwin-save-world-1.c11 __label__ l1; local
14 goto l1;
17 l1:;
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dlogical_dot_product.f906 logical :: l1(4) = (/.TRUE.,.FALSE.,.TRUE.,.FALSE./) variable
8 if (dot_product (l1, l2)) call abort ()
10 if (.not.dot_product (l1, l2)) call abort ()
/haiku-buildtools/gcc/libstdc++-v3/testsuite/libstdc++-xmethods/
H A Dforwardlist.cc26 std::forward_list<int> l0, l1; local
28 l1.push_front (0);
29 l1.push_front (1);
30 l1.push_front (2);
31 l1.push_front (11011);
34 // { dg-final { note-test l1.empty() false } }
35 // { dg-final { note-test l1.front() 11011 } }
37 // { dg-final { whatis-test l1.empty() bool } }
38 // { dg-final { whatis-test l1.front() int } }
H A Dlist.cc29 std::list<int> l0, l1; local
31 l1.push_back (123);
32 l1.push_back (456);
33 l1.push_back (789);
36 // { dg-final { note-test l1.empty() false } }
37 // { dg-final { note-test l1.size() 3 } }
38 // { dg-final { note-test l1.front() 123 } }
39 // { dg-final { note-test l1.back() 789 } }
41 // { dg-final { whatis-test l1.empty() bool } }
42 // { dg-final { whatis-test l1
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A D20021029-1.c12 static const int ar[] = { &&l1 - &&l1, &&l2 - &&l1 };
13 void *p = &&l1 + ar[a];
15 l1:
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/list/modifiers/emplace/
H A Dconst_iterator.cc25 std::list<int> l1; local
26 l1.emplace(l1.cbegin(), 1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/list/modifiers/insert/
H A Dconst_iterator.cc25 std::list<int> l1, l2{5, 6}; local
27 std::list<int>::iterator it = l1.insert(l1.cbegin(), n);
28 it = l1.insert(l1.cbegin(), 1);
29 it = l1.insert(l1.cbegin(), {2, 3});
30 it = l1.insert(l1.cbegin(), 1, 4);
31 it = l1
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/ext/
H A Dstmtexpr9.C6 unsigned l, l1; local
7 l1 = l = ({ unsigned __v; __v; });
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/
H A Dpr46068.c6 asm goto (""::::l1);
8 l1:;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/eh/
H A Dgoto2.C7 l1: ; // { dg-error "jump to label 'l1'" }
12 goto l1; // { dg-message "from here|enters try block" }
H A Dgoto3.C8 l1: ; // { dg-error "jump to label 'l1'" }
13 goto l1; // { dg-message "from here|enters try block" }
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/list/operations/splice/
H A Dconst_iterator.cc25 std::list<int> l1{0, 1}, l2{2, 3};
26 l1.splice(l1.cbegin(), l2);
27 l2.splice(l2.cbegin(), std::move(l1));
28 l1.splice(l1.cbegin(), l2, l2.cbegin());
29 l2.splice(l2.cbegin(), std::move(l1), l1.cbegin());
30 l1.splice(l1
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/list/debug/
H A Dself_move_assign_neg.cc26 std::list<int> l1; local
27 l1 = std::move(l1);

Completed in 203 milliseconds

1234567891011>>