Searched refs:last (Results 1 - 25 of 665) sorted by relevance

1234567891011>>

/haiku-buildtools/binutils/ld/testsuite/ld-elf/
H A Dfoon.s3 .type last,%function
4 last: label
6 .size last,.-last
H A Dfinin.s3 .type last,%function
4 last: label
6 .size last,.-last
H A Dinitn.s3 .type last,%function
4 last: label
6 .size last,.-last
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-condition2.C6 constexpr int const * is_sorted_until(int const * first, int const * last) argument
8 return first == last || first + 1 == last ? last
10 : is_sorted_until(first + 1, last);
16 constexpr int const * last = is_sorted_until(array, array + 2); local
17 SA(last==array+2);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A D20030721-1.c22 int last= 0; local
24 while (last<3) {
25 last = first;
27 while (first<=last) {
31 last++;
33 if (last>10)
H A Dnon-local-goto-2.c31 int last; local
35 last = 0;
39 if (last == 0)
42 last = 1;
46 if (last == 0)
H A Dnon-local-goto-1.c30 int last; local
34 last = 0;
38 if (last == 0)
41 last = 1;
45 if (last == 0)
H A Dsetjmp-3.c18 int last = 0; local
23 last = 1;
27 if (last == 0)
H A Dpr28187.c5 void checkgroups(int last, int verbose) argument
9 while (window < last || outstanding) {
10 while (outstanding < 47 && window < last) {
11 if (window < last) {
H A Dsetjmp-4.c18 int last = 0; local
22 if (last == 0)
25 last = 1;
29 if (last == 0)
H A Dcombine-subregs.c8 foo (uint64_t state, uint32_t last) argument
10 if (state == last) abort ();
19 compare (uint64_t state, uint32_t *last, uint8_t buf) argument
21 if (*last == ((state | buf) & 0xFFFFFFFF)) {
22 foo (state, *last);
31 uint32_t last = 0x101U; local
32 int ret = compare(state, &last, 0x01);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dpr40087.c7 reverse(int *first, int *last) argument
9 if (first == last--)
11 while (first != last)
14 *first = *last;
15 *last = t;
16 if (++first == last--)
H A D20040121-1.c13 char *bar(char *first, char *last) argument
16 if (!first) return last;
17 if (!last) return first;
19 return foo(first, last);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/stackalign/
H A Dnon-local-goto-2.c30 int last = -1; local
34 last = 0;
38 if (last == 0)
41 last = 1;
45 if (last == 0)
H A Dnon-local-goto-1.c29 int last = -1; local
33 last = 0;
37 if (last == 0)
40 last = 1;
44 if (last == 0)
H A Dsetjmp-3.c17 int last = 0; local
22 last = 1;
26 if (last == 0)
H A Dsetjmp-4.c17 int last = 0; local
21 if (last == 0)
24 last = 1;
28 if (last == 0)
/haiku-buildtools/binutils/binutils/
H A Dbfdtest1.c35 bfd *last, *next; local
50 for (last = bfd_openr_next_archived_file (archive, NULL);
51 last;
52 last = next)
54 next = bfd_openr_next_archived_file (archive, last);
55 bfd_close (last);
58 for (last = bfd_openr_next_archived_file (archive, NULL);
59 last;
60 last = next)
62 next = bfd_openr_next_archived_file (archive, last);
[all...]
/haiku-buildtools/binutils/gas/testsuite/gas/ia64/
H A Dlast.l2 .*:4: Error: .* must be last in instruction group
3 .*:10: Error: .* must be last in instruction group
H A Dslot2.l2 .*:11: Error: .* must be last in bundle
3 .*:16: Error: .* must be last in bundle
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/ia64/
H A Dlast.l2 .*:4: Error: .* must be last in instruction group
3 .*:10: Error: .* must be last in instruction group
H A Dslot2.l2 .*:11: Error: .* must be last in bundle
3 .*:16: Error: .* must be last in bundle
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr52175.c2 char *foo (char *src, char **last) argument
6 dst = src = (src ? src : *last);
22 *last = src;
24 return *last;
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Darray_constructor_9.f9026 integer :: order, prefix, last, i, j, k local in subroutine:test
28 last = 0
31 last = last + 1
32 if (values (last) .ne. 1.5) call abort
36 last = last + 1
37 if (values (last) .ne. j + k * k) call abort
41 if (size (values, dim = 1) .ne. last) call abort
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/
H A Dpr26258.c7 Foo foo(Foo first, Foo last, _Bool ret_first) argument
10 Foo *t1 = (ret_first ? &first : &last);
12 last.b = 3;
16 t.b += last.b;
23 Foo last = (Foo){3, 4}; local
24 Foo ret = foo(first, last, 0);

Completed in 221 milliseconds

1234567891011>>