| /freebsd/bin/stty/ |
| H A D | print.c | 85 #define put(n, f, d) \ in print() macro 92 put("-icanon", ICANON, 1); in print() 93 put("-isig", ISIG, 1); in print() 94 put("-iexten", IEXTEN, 1); in print() 95 put("-echo", ECHO, 1); in print() 96 put("-echoe", ECHOE, 0); in print() 97 put("-echok", ECHOK, 0); in print() 98 put("-echoke", ECHOKE, 0); in print() 99 put("-echonl", ECHONL, 0); in print() 100 put("-echoctl", ECHOCTL, 0); in print() [all …]
|
| /freebsd/sys/dev/isci/scil/ |
| H A D | sci_pool.h | 91 U32 put; \ 102 ((this_pool).get == (this_pool).put) 109 (SCI_POOL_INCREMENT(this_pool, (this_pool).put) == (this_pool).get) 132 (this_pool).get > (this_pool).put \ 133 ? ((this_pool).size - (this_pool).get + (this_pool).put) \ 134 : ((this_pool).put - (this_pool).get) \ 146 (this_pool).put = 0; \ 165 (this_pool).array[(this_pool).put] = (the_value); \ 166 (this_pool).put = SCI_POOL_INCREMENT((this_pool), (this_pool).put); \
|
| /freebsd/contrib/gdtoa/ |
| H A 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/contrib/bmake/unit-tests/ |
| H A D | directive-if.exp | 10 make: directive-if.mk:76: Don't do this, always put a space after a directive. 11 make: directive-if.mk:81: Don't do this, always put a space after a directive. 12 make: directive-if.mk:88: Don't do this, always put a space around comparison operators. 13 make: directive-if.mk:95: Don't do this, always put a space after a directive. 14 make: directive-if.mk:100: Don't do this, always put a space after a directive.
|
| H A D | directive-if.mk | 80 # expect+1: Don't do this, always put a space after a directive. 87 # expect+1: Don't do this, always put a space around comparison operators. 94 # expect+1: Don't do this, always put a space after a directive. 99 # expect+1: Don't do this, always put a space after a directive.
|
| /freebsd/crypto/openssh/regress/ |
| H A 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
|
| H A D | sftp-uri.sh | 40 put ${DATA} copy 54 put ${DATA} copy
|
| /freebsd/sys/contrib/zlib/ |
| H A D | infback.c | 71 put = strm->next_out; \ 82 strm->next_out = put; \ 154 put = state->window; \ 157 if (out(out_desc, put, left)) { \ 195 unsigned char FAR *put; /* next output */ in inflateBack() local 222 put = state->window; in inflateBack() 283 zmemcpy(put, next, copy); in inflateBack() 287 put += copy; in inflateBack() 458 *put++ = (unsigned char)(state->length); in inflateBack() 531 from = put + copy; in inflateBack() [all …]
|
| H A D | gzwrite.c | 68 unsigned have, put, max = ((unsigned)-1 >> 2) + 1; in gz_comp() local 80 put = strm->avail_in > max ? max : strm->avail_in; in gz_comp() 81 writ = (int)write(state->fd, strm->next_in, put); in gz_comp() 114 put = strm->next_out - state->x.next > (int)max ? max : in gz_comp() 116 writ = (int)write(state->fd, state->x.next, put); in gz_comp() 190 z_size_t put = len; in gz_write() local 226 return state->again ? put - len : 0; in gz_write() 247 return state->again ? put - len : 0; in gz_write() 252 return put; in gz_write() 352 z_size_t len, put; in gzputs() local [all …]
|
| /freebsd/usr.sbin/pwd_mkdb/ |
| H A D | pwd_mkdb.c | 332 if ((dp->put)(dp, &key, &data, 0) == -1) in main() 334 if ((sdp->put)(sdp, &key, &data, 0) == -1) in main() 396 if ((dp->put)(dp, &key, &data, method) == -1) in main() 404 if ((dp->put)(dp, &key, &data, method) == -1) in main() 412 if ((dp->put)(dp, &key, &data, methoduid) == -1) in main() 420 if ((sdp->put)(sdp, &key, &sdata, method) == -1) in main() 428 if ((sdp->put)(sdp, &key, &sdata, method) == -1) in main() 436 if ((sdp->put)(sdp, &key, &sdata, methoduid) == -1) in main() 445 if ((dp->put)(dp, &key, &data, method) == -1) in main() 447 if ((sdp->put)(sdp, &key, &sdata, method) == -1) in main() [all …]
|
| /freebsd/contrib/one-true-awk/testdir/ |
| H A D | res.p | 5 R2: aromatic flatring5 pointing down put N at 1 with .V3 at R1.V2 7 R3: ring put N at 3 with .V5 at R2.V5 8 R4: ring put N at 1 with .V1 at R3.V3
|
| H A D | chem.awk | 211 put[i] = dbl[i] = "" 263 if (put[i] != "") { 266 printf("\t%s at V%d\n", put[i], i) 272 if (put[j] != "") 281 if (put[i] == "") 285 if (put[j] == "") 334 put[$cf] = m ":" atom(mol)
|
| H A D | lsd1.p | 3 F: flatring pointing left put N at 5 double 3,4 with .V1 at B.V2 7 W: ring pointing right with .V2 at R.V6 put N at 1 double 3,4
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__ostream/ |
| H A D | basic_ostream.h | 105 basic_ostream& put(char_type __c); 220 if (__f.put(*this, *this, this->fill(), __n).failed()) 241 if (__f.put(*this, 267 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed()) 288 if (__f.put(*this, 314 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed()) 334 if (__f.put(*this, *this, this->fill(), __n).failed()) 354 if (__f.put(*this, *this, this->fill(), __n).failed()) 374 if (__f.put(*this, *this, this->fill(), __n).failed()) 394 if (__f.put(*this, *this, this->fill(), __n).failed()) [all …]
|
| /freebsd/share/termcap/ |
| H A D | README | 7 probably put your own terminal in it. 13 in that order, the effect will be to put the most common at the front of 23 Try to keep the source as is whenever possible, and put mungings into 27 if you aren't a super user change the cp command to put it where you can. 43 files, eg /usr/local/etc/termcap, and encourage people to put
|
| /freebsd/crypto/krb5/src/plugins/kdb/db2/libdb2/test/SEQ_TEST/ |
| H A D | t.c | 37 if (dbp->put(dbp, &key, &data,R_NOOVERWRITE) != 0) { in main() 63 if (dbp->put(dbp, &keyo, &datao,0) != 0) { in main() 68 if (dbp->put(dbp, &keyo, &datao,R_CURSOR) != 0) { in main()
|
| H A D | mbox | 75 if (dbp->put(dbp, &keyo, &datao,0) != 0) { 215 if (dbp->put(dbp, &key, &data,R_NOOVERWRITE) != 0) { 240 if (dbp->put(dbp, &keyo, &datao,0) != 0) { 283 However, because a put to the cursor record is done using a 361 ! * doing seq(..., R_NEXT)/put(..., 0) pairs, i.e. the put deletes 364 ! * notices and doesn't do a put() of it. Since the key is an exact 365 ! * match, we could as easily put the new record before the cursor, 370 ! * In the current implementation, put's to the cursor are done with 372 ! * that seq(..., R_NEXT)/put(..., R_CURSOR) pairs are going to exhibit
|
| /freebsd/sys/contrib/device-tree/src/powerpc/ |
| H A D | ps3.dts | 22 * so we'll put a null entry here. 34 * we'll put a null entries here. These will be initialized after 38 * threads is with an ibm,ppc-interrupt-server#s entry. We'll put one
|
| /freebsd/crypto/heimdal/appl/ftp/ftp/ |
| H A 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/contrib/nvi/vi/ |
| H A D | v_put.c | 45 if (put(sp, NULL, in v_Put() 77 if (put(sp, NULL, in v_put()
|
| /freebsd/crypto/krb5/src/plugins/kdb/db2/libdb2/include/ |
| H A D | db.hin | 54 #define R_CURSOR 1 /* del, put, seq */ 57 #define R_IAFTER 4 /* put (RECNO) */ 58 #define R_IBEFORE 5 /* put (RECNO) */ 61 #define R_NOOVERWRITE 8 /* put */ 63 #define R_SETCURSOR 10 /* put (RECNO) */ 124 int (*put) __P((const struct __db *, DBT *, const DBT *, u_int));
|
| /freebsd/lib/libc/db/test/btree.tests/ |
| H A D | main.c | 283 status = (db->put)(db, &key, &data, R_APPEND); 453 status = (db->put)(db, &key, &data, R_IAFTER); 483 status = (db->put)(db, &key, &data, R_IBEFORE); 512 status = (*db->put)(db, &key, &data, R_CURSOR); 541 status = (*db->put)(db, &key, &data, R_NOOVERWRITE); 635 status = (*db->put)(db, &key, &data, R_NOOVERWRITE);
|
| /freebsd/sys/contrib/zstd/zlibWrapper/ |
| H A D | gzwrite.c | 79 unsigned have, put, max = ((unsigned)-1 >> 2) + 1; in gz_comp() local 89 put = strm->avail_in > max ? max : strm->avail_in; in gz_comp() 90 writ = (int)write(state.state->fd, strm->next_in, put); in gz_comp() 109 put = strm->next_out - state.state->x.next > (int)max ? max : in gz_comp() 111 writ = (int)write(state.state->fd, state.state->x.next, put); in gz_comp() 177 z_size_t put = len; in gz_write() local 236 return put; in gz_write()
|
| /freebsd/contrib/ntp/html/hints/ |
| H A D | bsdi | 26 the instructions below assume that you have put in /usr/local/bin/gnumake. 42 Craft a config file and a key file, and put them in the right places. 44 the only thing I'll mention is that I put the drift file in
|
| /freebsd/crypto/krb5/src/plugins/kdb/db2/libdb2/test/btree.tests/ |
| H A D | main.c | 363 status = (db->put)(db, &key, &data, R_APPEND); 536 status = (db->put)(db, &key, &data, R_IAFTER); 566 status = (db->put)(db, &key, &data, R_IBEFORE); 595 status = (*db->put)(db, &key, &data, R_CURSOR); 624 status = (*db->put)(db, &key, &data, R_NOOVERWRITE); 743 status = (*db->put)(db, &key, &data, R_NOOVERWRITE);
|