Searched refs:cout (Results 1 - 24 of 24) sorted by relevance

/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Dtrace_fn_imps.hpp73 std::cout << r_e << " " <<* r_e << std::endl;
81 std::cout << r_e << std::endl;
/freebsd-9.3-release/contrib/libstdc++/include/std/
H A Dstd_iostream.h64 extern ostream cout; ///< Linked to standard output
76 // For construction of filebuffers for cout, cin, cerr, clog et. al.
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
H A Ddebug_fn_imps.hpp54 std::cout << "av1" << std::endl;
59 std::cout << "av2" << std::endl;
61 std::cout << "av3" << std::endl;
/freebsd-9.3-release/contrib/libstdc++/src/
H A Dios_init.cc71 extern ostream cout;
95 new (&cout) ostream(&buf_cout_sync);
99 cin.tie(&cout);
103 cerr.tie(&cout);
135 cout.flush();
157 // Turn off sync with C FILE* for cin, cout, cerr, clog iff
185 cout.rdbuf(&buf_cout);
H A Dglobals_io.cc61 fake_ostream cout; variable
/freebsd-9.3-release/contrib/libstdc++/include/backward/
H A Diostream.h40 using std::cout;
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/rb_tree_map_/
H A Dnode.hpp97 std::cout << PB_DS_V2F(m_value) <<(m_red? " <r> " : " <b> ")
132 { std::cout << PB_DS_V2F(m_value) <<(m_red? " <r> " : " <b> "); }
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/splay_tree_/
H A Dnode.hpp77 { std::cout << PB_DS_V2F(m_value) << "(" << m_metadata << ")"; }
119 { std::cout << PB_DS_V2F(m_value); }
/freebsd-9.3-release/contrib/libc++/src/
H A Diostream.cpp26 _ALIGNAS_TYPE (ostream) _LIBCPP_FUNC_VIS char cout[sizeof(ostream)]; variable
39 ostream* cout_ptr = ::new(cout) ostream(::new(__cout) __stdoutbuf<char>(stdout, state_types+1));
57 ostream* cout_ptr = reinterpret_cast<ostream*>(cout);
/freebsd-9.3-release/tools/tools/mctest/
H A Dmctest.cc66 cout << "mctest [-r] -M clients -m client number -i interface -g multicast group -s packet size -n number -t inter-packet gap\n";
197 cout << "Packet run complete\n";
199 cout << "Missed " << number - n << " packets." << endl;
202 cout << "sec: " << packets[i].tv_sec << " usec: " <<
214 cout << "maximum gap (usecs): " << maxgap << endl;
215 cout << "minimum gap (usecs): " << mingap << endl;
278 cout << "Packet Reflection Complete" << endl;
281 cout << "Missed " << args->number - n << " packets." << endl;
410 cout << "Results from client #" << client << endl;
411 cout << "i
[all...]
/freebsd-9.3-release/crypto/heimdal/appl/ftp/ftp/
H A Dmain.c187 if (cout != NULL) {
188 shutdown(fileno(cout), SHUT_RDWR);
189 fclose(cout);
190 cout = NULL;
201 if (cout != NULL) {
202 shutdown(fileno(cout), SHUT_RDWR);
203 fclose(cout);
204 cout = NULL;
H A Dftp.c51 FILE *cin, *cout; variable
127 cout = fdopen (s, "w");
128 if (cin == NULL || cout == NULL) {
132 if (cout)
133 fclose (cout);
142 if (cout)
143 fclose (cout);
276 if (cout == NULL) {
293 sec_vfprintf(cout, fmt, ap);
299 fprintf (cout, "\
[all...]
H A Dextern.h157 extern FILE *cout;
H A Dcmds.c1522 if (cout) {
1523 fclose(cout);
1525 cout = NULL;
/freebsd-9.3-release/contrib/ntp/util/
H A Dsht.c85 cout <<"CreateFileMapping with psec!=0 failed"<<endl;
93 cout <<"CreateFileMapping "<<buf<<":"<<mbuf<<endl;
103 cout <<"MapViewOfFile "<<buf<<":"<<mbuf<<endl;
/freebsd-9.3-release/crypto/openssl/crypto/evp/
H A Dopenbsd_hw.c182 char *cout = NULL;
194 cout = OPENSSL_malloc(cinl);
195 cryp.dst = cout;
207 if (cout) {
208 memcpy(out, cout, inl);
209 OPENSSL_free(cout);
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Dtasn_enc.c541 int asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cout, int *putype, argument
553 return pf->prim_i2c(pval, cout, putype, it);
609 cout ? &cout : NULL);
617 return i2c_ASN1_INTEGER((ASN1_INTEGER *)*pval, cout ? &cout : NULL);
642 if (cout) {
643 strtmp->data = cout;
655 if (cout && len)
656 memcpy(cout, con
[all...]
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
H A Drc.hpp255 std::cout << "rc" << std::endl;
258 std::cout << std::endl;
/freebsd-9.3-release/contrib/tnftp/src/
H A Dftp.c257 cout = fdopen(s, "w");
258 if (cin == NULL || cout == NULL) {
262 if (cout)
263 (void)fclose(cout);
272 if (cout)
273 (void)fclose(cout);
340 if (cout == NULL) {
351 vfprintf(cout, fmt, ap);
353 fputs("\r\n", cout);
354 (void)fflush(cout);
[all...]
H A Dutil.c298 if (cout)
299 (void)fclose(cout);
300 cout = NULL;
346 if (cout != NULL) {
347 (void)shutdown(fileno(cout), 1+1);
348 (void)fclose(cout);
349 cout = NULL;
360 if (cout != NULL) {
361 (void)shutdown(fileno(cout), 1+1);
362 (void)fclose(cout);
[all...]
H A Dftp_var.h320 GLOBAL FILE *cout; variable
/freebsd-9.3-release/tools/tools/mcgrab/
H A Dmcgrab.cc64 cout << "mcgrab -i interface -g multicast group -n number of groups\n";
/freebsd-9.3-release/sys/dev/digi/
H A Ddigireg.h34 volatile u_short cout; member in struct:global_data
H A Ddigi.c1424 tail = port->sc->gdata->cout;

Completed in 218 milliseconds