Searched refs:stream (Results 1 - 25 of 635) sorted by relevance

1234567891011>>

/haiku-buildtools/legacy/gcc/libio/
H A Distream.h25 #include <stream.h>
H A Dostream.h25 #include <stream.h>
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/lto/
H A D20091015-1_0.c6 void diagnostic_initialize (FILE **stream) { *stream = stderr; } argument
H A D20091015-1_1.c3 void ggc_print_common_statistics (FILE *stream) { argument
/haiku-buildtools/legacy/gcc/libio/stdio/
H A Dsetlinebuf.c32 setlinebuf (stream)
33 _IO_FILE *stream;
35 _IO_setvbuf (stream, NULL, 1, 0);
/haiku-buildtools/gcc/zlib/
H A Duncompr.c30 z_stream stream; local
33 stream.next_in = (Bytef*)source;
34 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
45 err = inflateInit(&stream);
[all...]
/haiku-buildtools/binutils/zlib/
H A Duncompr.c30 z_stream stream; local
33 stream.next_in = (z_const Bytef *)source;
34 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
45 err = inflateInit(&stream);
[all...]
/haiku-buildtools/gcc/gmp/mpq/
H A Dout_str.c1 /* mpq_out_str(stream,base,integer) */
27 mpq_out_str (FILE *stream, int base, mpq_srcptr q) argument
31 if (stream == NULL)
32 stream = stdout;
34 written = mpz_out_str (stream, base, mpq_numref (q));
38 putc ('/', stream);
39 written += 1 + mpz_out_str (stream, base, mpq_denref (q));
42 return ferror (stream) ? 0 : written;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/tm/
H A Dpr47747.C15 Building (InputStream *stream);
18 Building::Building (InputStream *stream) argument
20 stream->readUint32 (); /* { dg-error "InputStream::readUint32" } */
H A Dpr47746.C14 __attribute__((transaction_safe)) Building (InputStream *stream);
16 void load (InputStream *stream);
19 Building::Building (InputStream *stream) argument
21 load(stream);
24 void Building::load (InputStream *stream) argument
26 int j = (int)stream->readUint32 ();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/tellg/char/
H A Dexceptions_badbit_throw.cc31 istream stream(&bib);
32 stream.exceptions(ios_base::badbit);
36 stream.tellg();
41 // stream should set badbit and rethrow facet_error.
42 VERIFY( stream.bad() );
43 VERIFY( (stream.rdstate() & ios_base::failbit) == 0 );
44 VERIFY( !stream.eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/tellg/wchar_t/
H A Dexceptions_badbit_throw.cc31 wistream stream(&bib);
32 stream.exceptions(ios_base::badbit);
36 stream.tellg();
41 // stream should set badbit and rethrow facet_error.
42 VERIFY( stream.bad() );
43 VERIFY( (stream.rdstate() & ios_base::failbit) == 0 );
44 VERIFY( !stream.eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/flush/wchar_t/
H A Dexceptions_badbit_throw.cc31 wostream stream(&bib);
32 stream.exceptions(ios_base::badbit);
36 stream.flush();
41 // stream should set badbit and rethrow facet_error.
42 VERIFY( stream.bad() );
43 VERIFY( (stream.rdstate() & ios_base::failbit) == 0 );
44 VERIFY( !stream.eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/flush/char/
H A Dexceptions_badbit_throw.cc31 ostream stream(&bib);
32 stream.exceptions(ios_base::badbit);
36 stream.flush();
41 // stream should set badbit and rethrow facet_error.
42 VERIFY( stream.bad() );
43 VERIFY( (stream.rdstate() & ios_base::failbit) == 0 );
44 VERIFY( !stream.eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/tellp/char/
H A Dexceptions_badbit_throw.cc31 ostream stream(&bib);
32 stream.exceptions(ios_base::badbit);
36 stream.tellp();
41 // stream should set badbit and rethrow facet_error.
42 VERIFY( stream.bad() );
43 VERIFY( (stream.rdstate() & ios_base::failbit) == 0 );
44 VERIFY( !stream.eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/tellp/wchar_t/
H A Dexceptions_badbit_throw.cc31 wostream stream(&bib);
32 stream.exceptions(ios_base::badbit);
36 stream.tellp();
41 // stream should set badbit and rethrow facet_error.
42 VERIFY( stream.bad() );
43 VERIFY( (stream.rdstate() & ios_base::failbit) == 0 );
44 VERIFY( !stream.eof() );
/haiku-buildtools/gcc/mpc/src/
H A Dout_str.c1 /* mpc_out_str -- Output a complex number on a given stream.
26 mpc_out_str (FILE *stream, int base, size_t n, mpc_srcptr op, mpc_rnd_t rnd) { argument
29 if (stream == NULL)
30 stream = stdout; /* fprintf does not allow NULL as first argument */
32 fprintf (stream, "(");
33 size += mpfr_out_str (stream, base, n, mpc_realref(op), MPC_RND_RE(rnd));
34 fprintf (stream, " ");
35 size += mpfr_out_str (stream, base, n, mpc_imagref(op), MPC_RND_RE(rnd));
36 fprintf (stream, ")");
/haiku-buildtools/gcc/gcc/
H A Dlto-compress.h31 extern void lto_compress_block (struct lto_compression_stream *stream,
33 extern void lto_end_compression (struct lto_compression_stream *stream);
38 extern void lto_uncompress_block (struct lto_compression_stream *stream,
40 extern void lto_end_uncompression (struct lto_compression_stream *stream);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/22_locale/num_put/put/char/
H A D7.cc34 ostringstream stream; local
35 const np_t& np = use_facet<np_t>(stream.getloc());
37 np.put(stream, wcout, ' ', static_cast<long>(10));
38 VERIFY( stream.str() == "10" );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/22_locale/num_put/put/wchar_t/
H A D7.cc33 wostringstream stream; local
34 const npw_t& npw = use_facet<npw_t>(stream.getloc());
36 npw.put(stream, cout, L' ', static_cast<long>(10));
37 VERIFY( stream.str() == L"10" );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ios/exceptions/char/
H A D2.cc27 ostringstream stream;
31 stream.setstate(ios_base::failbit);
32 stream.exceptions(ios_base::failbit);
43 stream.setstate(ios_base::goodbit);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/peek/wchar_t/
H A D12296.cc29 wistringstream stream; local
30 VERIFY( stream.rdstate() == ios_base::goodbit );
31 wistringstream::int_type c = stream.peek();
33 VERIFY( stream.rdstate() == ios_base::eofbit );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/peek/char/
H A D12296.cc29 istringstream stream; local
30 VERIFY( stream.rdstate() == ios_base::goodbit );
31 istringstream::int_type c = stream.peek();
33 VERIFY( stream.rdstate() == ios_base::eofbit );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/sentry/wchar_t/
H A D12297.cc29 wistringstream stream;
30 stream.exceptions(ios_base::eofbit);
34 wistream::sentry sentry(stream, false);
39 VERIFY( stream.rdstate() == (ios_base::eofbit | ios_base::failbit) );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/
H A D12297.cc30 istringstream stream;
31 stream.exceptions(ios_base::eofbit);
35 istream::sentry sentry(stream, false);
40 VERIFY( stream.rdstate() == (ios_base::eofbit | ios_base::failbit) );

Completed in 1906 milliseconds

1234567891011>>