| /freebsd-12-stable/bin/stty/ |
| D | print.c | 91 #define put(n, f, d) \ in print() macro 98 put("-icanon", ICANON, 1); in print() 99 put("-isig", ISIG, 1); in print() 100 put("-iexten", IEXTEN, 1); in print() 101 put("-echo", ECHO, 1); in print() 102 put("-echoe", ECHOE, 0); in print() 103 put("-echok", ECHOK, 0); in print() 104 put("-echoke", ECHOKE, 0); in print() 105 put("-echonl", ECHONL, 0); in print() 106 put("-echoctl", ECHOCTL, 0); in print() [all …]
|
| /freebsd-12-stable/sys/dev/isci/scil/ |
| D | sci_pool.h | 93 U32 put; \ 104 ((this_pool).get == (this_pool).put) 111 (SCI_POOL_INCREMENT(this_pool, (this_pool).put) == (this_pool).get) 134 (this_pool).get > (this_pool).put \ 135 ? ((this_pool).size - (this_pool).get + (this_pool).put) \ 136 : ((this_pool).put - (this_pool).get) \ 148 (this_pool).put = 0; \ 167 (this_pool).array[(this_pool).put] = (the_value); \ 168 (this_pool).put = SCI_POOL_INCREMENT((this_pool), (this_pool).put); \
|
| /freebsd-12-stable/contrib/gdtoa/ |
| D | printf.c0 | 669 #define put(x) { *outbuf++ = x; if (outbuf == obe) outbuf = (*fput)(f,&rv); } 715 put(c) 796 put(c) 799 put(conv) 862 put('0') /* for 0x */ 864 put(sign) 866 put('0') 867 do put(*--s) 870 put(' ') 876 put('0') [all …]
|
| /freebsd-12-stable/contrib/libstdc++/src/ |
| D | strstream.cc | 86 strstreambuf::strstreambuf(char* get, streamsize n, char* put) in strstreambuf() argument 89 { _M_setup(get, put, n); } in strstreambuf() 91 strstreambuf::strstreambuf(signed char* get, streamsize n, signed char* put) in strstreambuf() argument 94 { _M_setup(reinterpret_cast<char*>(get), reinterpret_cast<char*>(put), n); } in strstreambuf() 97 unsigned char* put) in strstreambuf() argument 100 { _M_setup(reinterpret_cast<char*>(get), reinterpret_cast<char*>(put), n); } in strstreambuf() 323 strstreambuf::_M_setup(char* get, char* put, streamsize n) in _M_setup() argument 329 if (put) in _M_setup() 331 setg(get, get, put); in _M_setup() 332 setp(put, put + N); in _M_setup()
|
| /freebsd-12-stable/crypto/openssh/regress/ |
| D | sftp-batch.sh | 12 put ${COPY} ${COPY}.1 14 -put ${COPY} ${COPY}.2 26 put ${COPY} ${COPY}.3 29 put ${COPY}.3 ${COPY}.4
|
| D | sftp-uri.sh | 40 put ${DATA} copy 54 put ${DATA} copy
|
| /freebsd-12-stable/sys/contrib/zlib/ |
| D | infback.c | 131 put = strm->next_out; \ 142 strm->next_out = put; \ 214 put = state->window; \ 217 if (out(out_desc, put, left)) { \ 260 unsigned char FAR *put; /* next output */ local 287 put = state->window; 348 zmemcpy(put, next, copy); 352 put += copy; 519 *put++ = (unsigned char)(state->length); 592 from = put + copy; [all …]
|
| D | gzwrite.c | 81 unsigned have, put, max = ((unsigned)-1 >> 2) + 1; local 91 put = strm->avail_in > max ? max : strm->avail_in; 92 writ = write(state->fd, strm->next_in, put); 120 put = strm->next_out - state->x.next > (int)max ? max : 122 writ = write(state->fd, state->x.next, put); 195 z_size_t put = len; local 254 return put; 368 z_size_t len, put; local 386 put = gz_write(state, s, len); 387 return put < len ? -1 : (int)len;
|
| /freebsd-12-stable/usr.sbin/pwd_mkdb/ |
| D | pwd_mkdb.c | 354 if ((dp->put)(dp, &key, &data, 0) == -1) in main() 356 if ((sdp->put)(sdp, &key, &data, 0) == -1) in main() 418 if ((dp->put)(dp, &key, &data, method) == -1) in main() 426 if ((dp->put)(dp, &key, &data, method) == -1) in main() 434 if ((dp->put)(dp, &key, &data, methoduid) == -1) in main() 442 if ((sdp->put)(sdp, &key, &sdata, method) == -1) in main() 450 if ((sdp->put)(sdp, &key, &sdata, method) == -1) in main() 458 if ((sdp->put)(sdp, &key, &sdata, methoduid) == -1) in main() 467 if ((dp->put)(dp, &key, &data, method) == -1) in main() 469 if ((sdp->put)(sdp, &key, &sdata, method) == -1) in main() [all …]
|
| /freebsd-12-stable/share/termcap/ |
| D | README | 10 probably put your own terminal in it. 16 in that order, the effect will be to put the most common at the front of 26 Try to keep the source as is whenever possible, and put mungings into 30 if you aren't a super user change the cp command to put it where you can. 46 files, eg /usr/local/etc/termcap, and encourage people to put
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/ |
| D | DependencyDirectivesSourceMinimizer.cpp | 79 Minimizer &put(char Byte) { in put() function 421 put(' '); in printToNewline() 505 put(*First++).put('\n'); in printAtImportBody() 522 put('\n'); in printDirectiveBody() 579 put(*First++); in printMacroArgs() 586 put(*First++); in printMacroArgs() 716 put(' '); in lexDefine() 785 put('#').append(Directive).put(' '); in lexDefault()
|
| /freebsd-12-stable/contrib/llvm-project/libcxx/include/ |
| D | ostream | 62 basic_ostream& put(char_type c); 220 basic_ostream& put(char_type __c); 372 if (__f.put(*this, *this, this->fill(), __n).failed()) 399 if (__f.put(*this, *this, this->fill(), 428 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed()) 455 if (__f.put(*this, *this, this->fill(), 484 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed()) 510 if (__f.put(*this, *this, this->fill(), __n).failed()) 536 if (__f.put(*this, *this, this->fill(), __n).failed()) 562 if (__f.put(*this, *this, this->fill(), __n).failed()) [all …]
|
| /freebsd-12-stable/crypto/heimdal/appl/ftp/ftp/ |
| D | cmdtab.c | 120 { "append", appendhelp, 1, 1, 1, put }, 162 { "put", sendhelp, 1, 1, 1, put }, 175 { "send", sendhelp, 1, 1, 1, put },
|
| /freebsd-12-stable/contrib/libpcap/doc/ |
| D | README.tru64 | 35 applications to put the interface on that network into "local copy" 37 running as well as packets received by that host, and to put the 44 or allow application to put any interface into "local copy" or
|
| /freebsd-12-stable/contrib/subversion/subversion/libsvn_fs_base/bdb/ |
| D | reps-table.c | 61 BDB_ERR(reps->put in svn_fs_bdb__open_reps_table() 129 bfd->representations->put in svn_fs_bdb__write_rep() 171 db_err = bfd->representations->put in svn_fs_bdb__write_new_rep()
|
| D | checksum-reps-table.c | 63 BDB_ERR(checksum_reps->put(checksum_reps, 0, in svn_fs_bdb__open_checksum_reps_table() 143 bfd->checksum_reps->put(bfd->checksum_reps, trail->db_txn, in svn_fs_bdb__set_checksum_rep() 201 db_err = bfd->checksum_reps->put(bfd->checksum_reps, trail->db_txn, in svn_fs_bdb__reserve_rep_reuse_id()
|
| D | copies-table.c | 61 BDB_ERR(copies->put(copies, 0, in svn_fs_bdb__open_copies_table() 93 bfd->copies->put(bfd->copies, trail->db_txn, in put_copy() 128 db_err = bfd->copies->put(bfd->copies, trail->db_txn, in svn_fs_bdb__reserve_copy_id()
|
| D | nodes-table.c | 69 BDB_ERR(nodes->put(nodes, 0, in svn_fs_bdb__open_nodes_table() 116 db_err = bfd->nodes->put(bfd->nodes, trail->db_txn, in svn_fs_bdb__new_node_id() 254 bfd->nodes->put(bfd->nodes, db_txn, in svn_fs_bdb__put_node_revision()
|
| D | miscellaneous-table.c | 69 BDB_ERR(miscellaneous->put in svn_fs_bdb__open_miscellaneous_table() 104 bfd->miscellaneous->put(bfd->miscellaneous, in svn_fs_bdb__miscellaneous_set()
|
| /freebsd-12-stable/contrib/nvi/vi/ |
| D | v_put.c | 45 if (put(sp, NULL, in v_Put() 76 if (put(sp, NULL, in v_put()
|
| /freebsd-12-stable/contrib/apr-util/dbm/ |
| D | NWGNUmakefile | 152 # If there is an NLM target, put it here 165 # If there is an LIB target, put it here 192 # If the nlm has a msg file, put it's path here 197 # If the nlm has a hlp file put it's path here
|
| D | NWGNUdbmdb | 181 # If there is an NLM target, put it here 188 # If there is an LIB target, put it here 231 # If the nlm has a msg file, put it's path here 236 # If the nlm has a hlp file put it's path here
|
| /freebsd-12-stable/lib/libc/db/test/btree.tests/ |
| D | main.c | 289 status = (db->put)(db, &key, &data, R_APPEND); 459 status = (db->put)(db, &key, &data, R_IAFTER); 489 status = (db->put)(db, &key, &data, R_IBEFORE); 518 status = (*db->put)(db, &key, &data, R_CURSOR); 547 status = (*db->put)(db, &key, &data, R_NOOVERWRITE); 641 status = (*db->put)(db, &key, &data, R_NOOVERWRITE);
|
| /freebsd-12-stable/contrib/ipfilter/ |
| D | NAT.FreeBSD | 36 put in the rules that you need for your system. 68 In your /etc/rc.local put the line: 79 in the rc.local file put the line:
|
| /freebsd-12-stable/contrib/apr-util/xml/ |
| D | NWGNUmakefile | 162 # If there is an NLM target, put it here 168 # If there is an LIB target, put it here 196 # If the nlm has a msg file, put it's path here 201 # If the nlm has a hlp file put it's path here
|