HomeSort by: relevance | last modified time | path
    Searched refs:cout (Results 1 - 11 of 11) sorted by relevancy

  /src/common/dist/zlib/contrib/iostream3/
test.cc 9 #include <iostream> // for cout
21 std::cout << "Wrote the following message to 'test1.txt.gz' (check with zcat or zless):\n"
25 std::cout << "\nReading 'test1.txt.gz' (buffered) produces:\n";
28 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n";
38 std::cout << "\nWrote the same message to 'test2.txt.gz' in uncompressed form";
40 std::cout << "\nReading 'test2.txt.gz' (unbuffered) produces:\n";
44 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n";
  /src/games/dab/
test.cc 48 std::cout << "x=" << x << std::endl;
  /src/tests/lib/libstdc++/
h_cin_nosync.cc 38 std::cout << std::cin.gcount() << std::endl;
  /src/tests/usr.bin/c++/
t_static_destructor.sh 96 A(int i):i(i){std::cout << "CTOR A" << std::endl;}
97 ~A() {std::cout << "DTOR A:" << i << std::endl;}
101 B(){static A s_a(10);m_a=&s_a;std::cout << "CTOR B" << std::endl;}
102 ~B(){std::cout << "DTOR B:" << (*m_a).i << std::endl;(*m_a).i = 20;}
121 A(int i):i(i){std::cout << "CTOR A" << std::endl;}
122 ~A() {std::cout << "DTOR A:" << i << std::endl;}
126 B(){static A s_a(10);m_a=&s_a;std::cout << "CTOR B" << std::endl;}
127 ~B(){std::cout << "DTOR B:" << (*m_a).i << std::endl;(*m_a).i = 20;}
158 A(int i):i(i){std::cout << "CTOR A" << std::endl;}
159 ~A() {std::cout << "DTOR A:" << i << std::endl;
    [all...]
t_call_once2.sh 104 void print_once(void) { std::call_once(flag, [](){ std::cout << "hello, " << std::flush; }); }
120 std::cout << "world!" << std::endl;
136 void print_once(void) { std::call_once(flag, [](){ std::cout << "hello, " << std::flush; }); }
152 std::cout << "world!" << std::endl;
180 void print_once(void) { std::call_once(flag, [](){ std::cout << "hello, " << std::flush; }); }
196 std::cout << "world!" << std::endl;
217 void print_once(void) { std::call_once(flag, [](){ std::cout << "hello, " << std::flush; }); }
233 std::cout << "world!" << std::endl;
271 void print_once(void) { std::call_once(flag, [](){ std::cout << "hello, " << std::flush; }); }
287 std::cout << "world!" << std::endl
    [all...]
t_cxxruntime.sh 95 int main(void) {std::cout << "hello world" << std::endl;exit(0);}
111 int main(void) {std::cout << "hello world" << std::endl;exit(0);}
139 int main(void) {std::cout << "hello world" << std::endl;exit(0);}
149 int main(void) {std::cout << "hello world" << std::endl;exit(0);}
163 int callpic(void) {std::cout << "hello world" << std::endl;return 0;}
195 int callpic(void) {std::cout << "hello world" << std::endl;return 0;}
221 int callpic(void) {std::cout << "hello world" << std::endl;return 0;}
259 int callpic(void) {std::cout << "hello world" << std::endl;return 0;}
279 int main(void) {std::cout << "hello world" << std::endl;exit(0);}
301 int main(void) {std::cout << "hello world" << std::endl;exit(0);
    [all...]
  /src/common/dist/zlib/contrib/iostream2/
zstream_test.cpp 17 cout << x << endl << y << endl << z << endl;
  /src/usr.bin/ftp/
ftp.c 263 cout = fdopen(s, "w");
264 if (cin == NULL || cout == NULL) {
268 if (cout)
269 (void)fclose(cout);
278 if (cout)
279 (void)fclose(cout);
362 if (cout == NULL) {
373 vfprintf(cout, fmt, ap);
375 fputs("\r\n", cout);
376 (void)fflush(cout);
    [all...]
util.c 287 if (cout)
288 (void)fclose(cout);
289 cout = NULL;
336 if (cout != NULL) {
337 (void)shutdown(fileno(cout), 1+1);
338 (void)fclose(cout);
339 cout = NULL;
350 if (cout != NULL) {
351 (void)shutdown(fileno(cout), 1+1);
352 (void)fclose(cout);
    [all...]
ftp_var.h 329 GLOBAL FILE *cout; variable in typeref:typename:GLOBAL FILE *
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/afl/
afl_driver.cpp 296 std::cout << "Reading " << length << " bytes from " << argv[i] << std::endl;
303 std::cout << "Execution successful" << std::endl;

Completed in 41 milliseconds