Searched refs:streamoff (Results 1 - 25 of 51) sorted by relevance

123

/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dpostypes.h72 // The types streamoff, streampos and wstreampos and the class
82 * In clauses 21.1.3.1 and 27.4.1 streamoff is described as an
84 * Note: In versions of GCC up to and including GCC 3.3, streamoff
88 typedef long streamoff; typedef
90 typedef long long streamoff;
92 typedef int64_t streamoff;
94 typedef long long streamoff;
115 streamoff _M_off;
127 // from streamoff objects using the constructor syntax, and
130 // constructor stores the streamoff a
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/fpos/
H A D14252.cc31 std::streamoff off01 = 10;
32 std::streamoff off02 = 2;
33 std::streamoff off03 = 2004;
34 std::streamoff off04 = 1;
H A D11450.cc33 std::fpos<int> q = p + static_cast<std::streamoff>(1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/headers/ios/
H A Dtypes_std.cc24 typedef std::streamoff t1;
H A Dsynopsis.cc24 typedef OFF_T streamoff;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/types/
H A D1.cc28 typedef std::ios_base::streamoff streamoff_type;
H A D2.cc26 std::streamoff soff;
H A D3.cc18 // 27.4.3 streamoff
28 VERIFY( std::streamsize(std::streamoff(n)) == n );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/fpos/mbstate_t/
H A D3.cc32 std::streamoff off01;
34 // casts to const streamoff
36 off01 = std::streamoff(pos01);
49 VERIFY( std::streamoff(pos04) == 0 );
H A D12065.cc31 std::streamoff o(0);
37 VERIFY( typeid(p - q) == typeid(std::streamoff) );
38 VERIFY( typeid(q - p) == typeid(std::streamoff) );
H A D2.cc34 std::streamoff off01;
35 std::streamoff off02 = 997;
50 std::streamoff off03(pos04);
76 // streamsize -> streamoff
77 // streamoff -> streamsize
80 std::streamoff off04(size01);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/objects/char/
H A D10.cc39 VERIFY( streamoff(p1) == 0 );
47 VERIFY( streamoff(p2) == ftell(stdin) );
52 streamoff n = p2 - p1;
58 VERIFY( streamoff(p3) == i );
65 VERIFY( streamoff(p4) == n );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_stringbuf/in_avail/wchar_t/
H A D1.cc34 std::streamoff strmof_1(-1), strmof_2;
41 VERIFY( strmof_1 == static_cast<std::streamoff>(str_01.length()) );
42 VERIFY( strmof_2 == static_cast<std::streamoff>(str_02.length()) );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_stringbuf/in_avail/char/
H A D1.cc34 std::streamoff strmof_1(-1), strmof_2;
41 VERIFY( strmof_1 == static_cast<std::streamoff>(str_01.length()) );
42 VERIFY( strmof_2 == static_cast<std::streamoff>(str_02.length()) );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_streambuf/in_avail/wchar_t/
H A D1.cc41 std::streamoff strmof_1;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_streambuf/in_avail/char/
H A D1.cc41 std::streamoff strmof_1;
/haiku-buildtools/legacy/gcc/libio/
H A Dbuiltinbuf.cc51 streampos builtinbuf::seekoff(streamoff off, _seek_dir dir, int mode)
67 streampos builtinbuf::sys_seek(streamoff off, _seek_dir dir)
H A Dbuiltinbuf.h50 virtual streampos seekoff(streamoff, _seek_dir, int mode=ios::in|ios::out);
54 virtual streampos sys_seek(streamoff, _seek_dir);
H A Dindstream.h70 virtual streampos seekoff(streamoff, _seek_dir, int mode=ios::in|ios::out);
H A Dstdiostream.h48 virtual streampos sys_seek(streamoff, _seek_dir);
H A Dfilebuf.cc176 streampos filebuf::seekoff(streamoff offset, _seek_dir dir, int mode)
191 streampos filebuf::sys_seek(streamoff offset, _seek_dir dir)
H A Dstreambuf.h74 typedef _IO_off64_t streamoff; typedef
77 typedef _IO_off_t streamoff; typedef
358 virtual streampos seekoff(streamoff, _seek_dir, int mode=ios::in|ios::out);
361 streampos pubseekoff(streamoff o, _seek_dir d, int mode=ios::in|ios::out)
365 streampos sseekoff(streamoff, _seek_dir, int mode=ios::in|ios::out);
413 virtual streampos sys_seek(streamoff, _seek_dir);
446 virtual streampos seekoff(streamoff, _seek_dir, int mode=ios::in|ios::out);
459 virtual streampos sys_seek(streamoff, _seek_dir);
/haiku-buildtools/gcc/libstdc++-v3/config/io/
H A Dbasic_file_stdio.h117 streamoff
118 seekoff(streamoff __off, ios_base::seekdir __way) throw ();
H A Dbasic_file_stdio.cc318 streamoff
319 __basic_file<char>::seekoff(streamoff __off, ios_base::seekdir __way) throw ()
364 const streamoff __off = __buffer.st_size - lseek64(this->fd(), 0,
366 return std::min(__off, streamoff(numeric_limits<streamsize>::max()));
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/in_avail/char/
H A D1.cc71 std::streamoff strmof_1, strmof_2;

Completed in 116 milliseconds

123