Home
last modified time | relevance | path

Searched refs:put (Results 1 – 25 of 617) sorted by relevance

12345678910>>...25

/freebsd-12.1/bin/stty/
H A Dprint.c91 #define put(n, f, d) \ in print() macro
99 put("-isig", ISIG, 1); in print()
101 put("-echo", ECHO, 1); in print()
102 put("-echoe", ECHOE, 0); in print()
103 put("-echok", ECHOK, 0); in print()
120 put("-icrnl", ICRNL, 1); in print()
121 put("-inlcr", INLCR, 0); in print()
122 put("-igncr", IGNCR, 0); in print()
123 put("-ixon", IXON, 1); in print()
124 put("-ixoff", IXOFF, 0); in print()
[all …]
/freebsd-12.1/sys/dev/isci/scil/
H A Dsci_pool.h93 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.1/contrib/gdtoa/
H A Dprintf.c0715 put(c)
796 put(c)
799 put(conv)
888 put('0')
893 put('0')
972 put(' ')
1058 put(c)
1069 put(c)
1195 put(c)
1277 put('0')
[all …]
/freebsd-12.1/contrib/libstdc++/src/
H A Dstrstream.cc86 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.1/crypto/openssh/regress/
H A Dsftp-batch.sh12 put ${COPY} ${COPY}.1
14 -put ${COPY} ${COPY}.2
26 put ${COPY} ${COPY}.3
29 put ${COPY}.3 ${COPY}.4
H A Dsftp-uri.sh40 put ${DATA} copy
54 put ${DATA} copy
/freebsd-12.1/sys/contrib/zlib/
H A Dinfback.c130 put = strm->next_out; \
141 strm->next_out = put; \
213 put = state->window; \
216 if (out(out_desc, put, left)) { \
259 unsigned char FAR *put; /* next output */ local
286 put = state->window;
347 zmemcpy(put, next, copy);
351 put += copy;
590 from = put + copy;
594 from = put - state->offset;
[all …]
H A Dgzwrite.c81 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);
111 put = strm->next_out - state->x.next > (int)max ? max :
113 writ = write(state->fd, state->x.next, put);
186 z_size_t put = len; local
245 return put;
/freebsd-12.1/usr.sbin/pwd_mkdb/
H A Dpwd_mkdb.c354 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()
467 if ((dp->put)(dp, &key, &data, method) == -1) in main()
469 if ((sdp->put)(sdp, &key, &sdata, method) == -1) in main()
497 if ((dp->put)(dp, &key, &data, method) == -1) in main()
[all …]
/freebsd-12.1/contrib/ntp/lib/isc/include/isc/
H A Dmem.h235 void (*put)(isc_mempool_t *mpctx, void *mem _ISC_MEM_FLARG); member
280 ISCMEMFUNC(put)((c), (p), (s) _ISC_MEM_FILELINE); \
295 ISCMEMPOOLFUNC(put)((c), (p) _ISC_MEM_FILELINE); \
299 #define isc_mem_put(c, p, s) ISCMEMFUNC(put)((c), (p), (s) _ISC_MEM_FILELINE)
303 #define isc_mempool_put(c, p) ISCMEMPOOLFUNC(put)((c), (p) _ISC_MEM_FILELINE)
707 ISCMEMFUNC(put)(isc_mem_t *, void *, size_t _ISC_MEM_FLARG);
719 ISCMEMPOOLFUNC(put)(isc_mempool_t *, void * _ISC_MEM_FLARG);
/freebsd-12.1/share/termcap/
H A DREADME10 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.1/contrib/libc++/include/
H A Dostream62 basic_ostream& put(char_type c);
223 basic_ostream& put(char_type __c);
380 if (__f.put(*this, *this, this->fill(), __n).failed())
407 if (__f.put(*this, *this, this->fill(),
463 if (__f.put(*this, *this, this->fill(),
518 if (__f.put(*this, *this, this->fill(), __n).failed())
544 if (__f.put(*this, *this, this->fill(), __n).failed())
570 if (__f.put(*this, *this, this->fill(), __n).failed())
886 basic_ostream<_CharT, _Traits>::put(char_type __c)
1002 __os.put(__os.widen('\n'));
[all …]
/freebsd-12.1/crypto/heimdal/appl/ftp/ftp/
H A Dcmdtab.c120 { "append", appendhelp, 1, 1, 1, put },
162 { "put", sendhelp, 1, 1, 1, put },
175 { "send", sendhelp, 1, 1, 1, put },
/freebsd-12.1/contrib/libpcap/
H A DREADME.tru6435 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.1/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Dreps-table.c61 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()
H A Dcopies-table.c61 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()
H A Dchecksum-reps-table.c63 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()
H A Dnodes-table.c69 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()
H A Dmiscellaneous-table.c69 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.1/contrib/nvi/vi/
H A Dv_put.c49 if (put(sp, NULL, in v_Put()
80 if (put(sp, NULL, in v_put()
/freebsd-12.1/contrib/apr-util/dbm/
H A DNWGNUmakefile152 # 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
/freebsd-12.1/lib/libc/db/test/btree.tests/
H A Dmain.c289 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.1/contrib/ipfilter/
H A DNAT.FreeBSD36 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.1/contrib/apr-util/dbd/
H A DNWGNUdbdsqli2178 # If there is an NLM target, put it here
185 # If there is an LIB target, put it here
228 # If the nlm has a msg file, put it's path here
233 # If the nlm has a hlp file put it's path here
H A DNWGNUmakefile152 # If there is an NLM target, put it here
176 # If there is an LIB target, put it here
203 # If the nlm has a msg file, put it's path here
208 # If the nlm has a hlp file put it's path here

12345678910>>...25