Searched refs:first (Results 1 - 25 of 1223) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/warn/
H A DWreturn-2.C2 int foo(int first) { argument
4 return first;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr18501.c12 unsigned first; /* { dg-warning "may be used" "conditional in loop" { xfail *-*-* } } */ local
16 if (!first)
18 first = 0;
H A D20030721-1.c21 int first= 0; local
25 last = first;
27 while (first<=last) {
28 first++;
37 foo(first);
/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
9 : (*(first + 1) < *first) != false ? first + 1
10 : is_sorted_until(first + 1, last);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/opt/
H A Dpr14029.C15 Iterator find_7(Iterator first, Iterator last) argument
17 int trip_count = (last.base() - first.base()) >> 1;
20 if (*first.ptr == 7) return first;
21 ++first;
23 if (*first.ptr == 7) return first;
24 ++first;
27 switch(last.base() - first.base()) {
29 if (*first
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dssa-dom-thread-2.c22 int first = 1; local
26 if (first)
29 first = 0;
40 int first = 1; local
44 if (first)
49 first = 0;
56 void dont_thread_2 (int first) argument
62 if (first)
67 first = 0;
75 int first local
95 int first; local
[all...]
H A Dpr40087.c7 reverse(int *first, int *last) argument
9 if (first == last--)
11 while (first != last)
13 int t = *first;
14 *first = *last;
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;
18 if (*first == 'a')
19 return foo(first, last);
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dtrunctfdf.c5 double *copy(long double *first, long double *last, double *result) argument
8 for (n = last - first; n > 0; --n) {
9 *result = *first;
10 ++first;
H A D20060904-1.c13 void foo(chunk_t *first) argument
19 first0 = (char *) first;
20 cur = (chunk_t *) (first0 + first->offset_next);
21 if ((chunk_t *) (first0 + cur->offset_next) != first)
24 first->offset_next = 0;
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dsave_5.f9020 logical, save :: first = .true. local in subroutine:bar
22 if (first) then
23 first = .false.
34 logical, save :: first = .true. local in subroutine:bar_array
36 if (first) then
37 first = .false.
H A Dproc_ptr_5.f9018 subroutine test(first)
19 logical :: first local in subroutine:test
23 if(first) then
H A Dinit_flag_7.f9013 subroutine save_test1 (first)
14 logical first local in subroutine:save_test1
19 if (first) then
33 subroutine save_test2 (first)
34 logical first local in subroutine:save_test2
38 if (first) then
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.oliva/
H A Ddelete3.C13 static bool first; member in struct:Foo
16 if (first)
17 first = false;
19 throw first;
27 bool Foo::first = true; member in class:Foo
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpredcom-1.C19 bool Baz (Foo first, double *last) argument
21 Foo prev (first.ptr);
23 first.ptr++;
25 while (first.ptr != last)
26 if (*first.PostInc ().ptr < *prev.PostInc ().ptr)
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/lto/
H A Dattr-weakref-1_0.c2 int first = 0; variable
9 if (!first || !second)
14 if (first)
16 first = 1;
20 if (!first)
/haiku-buildtools/gcc/gcc/testsuite/gfortran.fortran-torture/execute/
H A Dallocate.f909 subroutine t1(first)
12 logical first local in subroutine:t1
14 if (first) then
21 if (first) then
/haiku-buildtools/legacy/binutils/libiberty/
H A Dconcat.c28 available. The argument list is terminated by the first @code{NULL}
70 vconcat_length (const char *first, va_list args) argument
75 for (arg = first; arg ; arg = va_arg (args, const char *))
82 vconcat_copy (char *dst, const char *first, va_list args) argument
87 for (arg = first; arg ; arg = va_arg (args, const char *))
101 concat_length (const char *first, ...) argument
105 VA_OPEN (args, first);
106 VA_FIXEDARG (args, const char *, first);
107 length = vconcat_length (first, args);
116 concat_copy (char *dst, const char *first, argument
141 concat_copy2(const char *first, ...) argument
152 concat(const char *first, ...) argument
189 reconcat(char *optr, const char *first, ...) argument
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/set/operations/
H A D1.cc37 VERIFY( pp0.first == s0.end() );
46 VERIFY( *pp0.first == 2 );
48 VERIFY( pp0.first == irt1.first );
49 VERIFY( --pp0.first == irt0.first );
50 VERIFY( pp0.second == irt2.first );
58 VERIFY( *pp0.first == 3 );
60 VERIFY( pp0.first == irt2.first );
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/map/operations/
H A D1.cc38 VERIFY( pp0.first == m0.end() );
47 VERIFY( *pp0.first == value_type(2, 2) );
49 VERIFY( pp0.first == irt1.first );
50 VERIFY( --pp0.first == irt0.first );
51 VERIFY( pp0.second == irt2.first );
59 VERIFY( *pp0.first == value_type(3, 3) );
61 VERIFY( pp0.first == irt2.first );
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/debug/
H A Dpr35154-dwarf2.f17 logical first local in subroutine:sub
19 data first /.true./
20 if (first) then
22 first = .false.
H A Dpr35154-stabs.f16 logical first local in subroutine:sub
18 data first /.true./
19 if (first) then
21 first = .false.
/haiku-buildtools/gcc/libstdc++-v3/testsuite/ext/pb_ds/example/
H A Dtree_order_statistics_join.cc67 assert(s0.find_by_order(0)->first == 12);
68 assert(s0.find_by_order(1)->first == 30);
69 assert(s0.find_by_order(2)->first == 505);
81 assert(s0.find_by_order(0)->first == 12);
82 assert(s0.find_by_order(1)->first == 30);
83 assert(s0.find_by_order(2)->first == 505);
84 assert(s0.find_by_order(3)->first == 506);
85 assert(s0.find_by_order(4)->first == 1222);
86 assert(s0.find_by_order(5)->first == 3004);
/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);
11 first.a = 2;
15 t.a += first.a;
22 Foo first = (Foo){1, 2}; local
24 Foo ret = foo(first, last, 0);
/haiku-buildtools/binutils/libiberty/
H A Dconcat.c28 @code{xmalloc}ed memory. The argument list is terminated by the first
59 vconcat_length (const char *first, va_list args) argument
64 for (arg = first; arg ; arg = va_arg (args, const char *))
71 vconcat_copy (char *dst, const char *first, va_list args) argument
76 for (arg = first; arg ; arg = va_arg (args, const char *))
90 concat_length (const char *first, ...) argument
95 va_start (args, first);
96 length = vconcat_length (first, args);
105 concat_copy (char *dst, const char *first, ...) argument
110 va_start (args, first);
129 concat_copy2(const char *first, ...) argument
140 concat(const char *first, ...) argument
177 reconcat(char *optr, const char *first, ...) argument
[all...]

Completed in 202 milliseconds

1234567891011>>