Searched refs:pos (Results 1 - 25 of 546) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dstreamio_10.f9013 inquire(10, pos=thepos)
16 read(10, pos=1)
17 inquire(10, pos=thepos)
20 write(10, pos=15)
21 inquire(10, pos=thepos)
24 read(10, pos=3)
25 inquire(10, pos=thepos)
28 write(10, pos=1)
29 inquire(10, pos=thepos)
H A Dstreamio_16.f908 write(50, *, pos=1) "Just something "
10 read( 50, *,pos=i)
11 inquire(50, access=sAccess, pos=mypos)
H A Dpr43793.f9016 integer :: pos local in subroutine:sparse_alltoall
17 pos = 1
18 if (rcount(pos) /= 0) then
19 rq(1:rcount(pos),pos) = rs(1:rcount(pos),pos)
H A Dfmt_t_7.f9 read (10, pos=1) a
10 read (10, pos=50000) b
11 read (10, pos=25474) c
H A Dstreamio_14.f909 read (10,pos=1) c
12 read (10,pos=6) c
14 write (10,pos=3) 'AB'
16 read (10,pos=1) c
19 read (10,pos=6) c
H A Dstreamio_8.f9013 inquire(unit=11, pos=mypos)
16 inquire(unit=11, pos=mypos)
19 inquire(unit=11, pos=mypos)
22 inquire(unit=11, pos=mypos)
26 inquire (11, pos=mypos)
27 read(11,pos=16)r
29 inquire(unit=11, pos=mypos)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/modifiers/
H A D2.cc49 std::forward_list<int>::const_iterator pos = fl.cbegin(); local
50 ++pos;
51 VERIFY( *pos == 1 );
53 std::forward_list<int>::iterator ret = fl.insert_after(pos, 0, 42);
54 VERIFY( ret == pos );
56 ret = fl.insert_after(pos, 5, 42);
57 VERIFY( *pos == 1 );
59 ++pos;
60 VERIFY( *pos == 42 );
61 ++pos;
77 std::forward_list<int>::const_iterator pos = fl.cbegin(); local
103 std::forward_list<int>::const_iterator pos = fl.cbegin(); local
130 std::forward_list<std::string>::const_iterator pos = fl.cbegin(); local
[all...]
H A D3.cc28 // pos is useable and points to current element
36 std::forward_list<int>::const_iterator pos = fl.cbegin(); local
37 ++pos;
38 VERIFY( *pos == 1 );
40 std::forward_list<int>::iterator pos2 = fl.erase_after(pos);
42 VERIFY( *pos == 1 );
43 ++pos;
44 VERIFY( *pos == 3 );
45 VERIFY( pos == pos2 );
51 // pos i
59 std::forward_list<int>::const_iterator pos = fl.cbegin(); local
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dssa-lim-10.c9 static int pos; local
11 pos = 0;
17 pos = l[pos];
19 pos = r[pos];
21 if ( pos == -1 )
23 pos = 0;
30 /* { dg-final { scan-tree-dump "Executing store motion of pos" "lim1" } } */
H A Difc-pr44710.c13 unsigned int pos = 1; local
20 pos = i + 1;
25 return pos;
30 int i, pos; local
38 pos = foo (N, &min);
39 if (pos != 3 || min != arr[2])
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/fpos/mbstate_t/
H A D4_neg.cc26 std::streampos pos; local
30 n = pos; // { dg-error "cannot convert" "" { xfail *-*-* } }
33 n = static_cast<long>(pos); // { dg-error "invalid static_cast" "" { xfail *-*-* } }
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/conversion/
H A Dbase1.C12 Pos pos; member in struct:TexCoords
18 const Pos &pos = coords.pos; local
19 pos.x;
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr14692.c4 void eidecpos_1 (unsigned char *pos, long n) argument
9 const unsigned char *dc_ptr1 = pos;
10 pos--;
11 if (dc_ptr1 - pos == 1)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/operations/rfind/char/
H A D2.cc28 std::string::size_type pos; local
29 pos = z.find_last_of("ab");
30 VERIFY( pos == 1 );
31 pos = z.find_last_of("Xa");
32 VERIFY( pos == 0 );
33 pos = z.find_last_of("Xb");
34 VERIFY( pos == 1 );
35 pos = z.find_last_of("XYZ");
36 VERIFY( pos == std::string::npos );
37 pos
[all...]
H A D3.cc28 std::string::size_type pos; local
32 pos = x.find_last_not_of('X');
33 VERIFY( pos == npos );
34 pos = x.find_last_not_of("XYZ");
35 VERIFY( pos == npos );
38 pos = y.find_last_not_of('X');
39 VERIFY( pos == 0 );
40 pos = y.find_last_not_of('a');
41 VERIFY( pos == npos );
42 pos
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/operations/rfind/wchar_t/
H A D2.cc27 std::wstring::size_type pos; local
29 pos = z.find_last_of(L"ab");
30 VERIFY( pos == 1 );
31 pos = z.find_last_of(L"Xa");
32 VERIFY( pos == 0 );
33 pos = z.find_last_of(L"Xb");
34 VERIFY( pos == 1 );
35 pos = z.find_last_of(L"XYZ");
36 VERIFY( pos == std::wstring::npos );
37 pos
[all...]
H A D3.cc28 std::wstring::size_type pos; local
32 pos = x.find_last_not_of(L'X');
33 VERIFY( pos == npos );
34 pos = x.find_last_not_of(L"XYZ");
35 VERIFY( pos == npos );
38 pos = y.find_last_not_of(L'X');
39 VERIFY( pos == 0 );
40 pos = y.find_last_not_of(L'a');
41 VERIFY( pos == npos );
42 pos
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/experimental/string_view/operations/rfind/char/
H A D2.cc32 std::experimental::string_view::size_type pos; local
33 pos = z.find_last_of("ab");
34 VERIFY( pos == 1 );
35 pos = z.find_last_of("Xa");
36 VERIFY( pos == 0 );
37 pos = z.find_last_of("Xb");
38 VERIFY( pos == 1 );
39 pos = z.find_last_of("XYZ");
40 VERIFY( pos == std::experimental::string_view::npos );
41 pos
[all...]
H A D3.cc31 std::experimental::string_view::size_type pos; local
35 pos = x.find_last_not_of('X');
36 VERIFY( pos == npos );
37 pos = x.find_last_not_of("XYZ");
38 VERIFY( pos == npos );
41 pos = y.find_last_not_of('X');
42 VERIFY( pos == 0 );
43 pos = y.find_last_not_of('a');
44 VERIFY( pos == npos );
45 pos
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/experimental/string_view/operations/rfind/wchar_t/
H A D2.cc30 std::experimental::wstring_view::size_type pos; local
32 pos = z.find_last_of(L"ab");
33 VERIFY( pos == 1 );
34 pos = z.find_last_of(L"Xa");
35 VERIFY( pos == 0 );
36 pos = z.find_last_of(L"Xb");
37 VERIFY( pos == 1 );
38 pos = z.find_last_of(L"XYZ");
39 VERIFY( pos == std::experimental::wstring_view::npos );
40 pos
[all...]
H A D3.cc31 std::experimental::wstring_view::size_type pos; local
35 pos = x.find_last_not_of(L'X');
36 VERIFY( pos == npos );
37 pos = x.find_last_not_of(L"XYZ");
38 VERIFY( pos == npos );
41 pos = y.find_last_not_of(L'X');
42 VERIFY( pos == 0 );
43 pos = y.find_last_not_of(L'a');
44 VERIFY( pos == npos );
45 pos
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/operations/
H A D2.cc36 std::forward_list<int>::const_iterator pos = fl.cbefore_begin(); local
38 ++pos;
39 VERIFY(*pos == 6);
41 ++pos;
42 VERIFY(*pos == 8);
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/aarch64/
H A Dshrink_wrap_symbol_ref_1.c10 int pos = 0; local
13 while (pos < size)
15 int thissize = size - pos;
22 pos += thissize;
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dgroff1.C22 void foo(const A &pos);
25 void S::foo(const A &pos) argument
27 A a = flags ? from : pos;
35 A pos; local
36 pos.x = 17;
37 pos.y = 12;
39 s.foo(pos);
/haiku-buildtools/gcc/libstdc++-v3/include/ext/pb_ds/detail/cc_hash_table_map_/
H A Derase_fn_imps.hpp62 for (size_type pos = 0; pos < m_num_e; ++pos)
64 while (m_entries[pos] != 0 && pred(m_entries[pos]->m_value))
67 entry_pointer p_next_e = m_entries[pos]->m_p_next;
68 erase_entry_pointer(m_entries[pos]);
69 m_entries[pos] = p_next_e;
72 entry_pointer p_e = m_entries[pos];
94 for (size_type pos
[all...]

Completed in 137 milliseconds

1234567891011>>