Searched defs:put (Results 1 - 21 of 21) sorted by relevance

/illumos-gate/usr/src/lib/libxcurses/h/
H A Dm_wio.h49 int (*put)(int, void *); /* Put byte to output object. */ member in struct:__anon4206
/illumos-gate/usr/src/lib/libxcurses2/h/
H A Dm_wio.h49 int (*put)(int, void *); /* Put byte to output object. */ member in struct:__anon4220
/illumos-gate/usr/src/uts/common/os/
H A Dputnext.c32 * This file contains the C-versions of putnext() and put().
101 * purpose: call the put routine of the queue linked to qp
109 * nothing stoping a concurrent put from occuring (note that putcounts
127 * ordering, we need to put this message at the end, and pickup the
267 * put the message on the syncq and then drain it, or we are
295 * Therefore, put the message on the queue
387 * For SQ_CIPUT SQ_EXCL will only be set if the put
426 put(queue_t *qp, mblk_t *mp) function
440 "put:(%X, %X)", qp, mp);
534 * put th
[all...]
/illumos-gate/usr/src/uts/common/io/1394/targets/av1394/
H A Dav1394_queue.c159 av1394_put_common(av1394_queue_t *q, mblk_t *bp, putfunc_t put) argument
168 put(&q->q_list, bp);
/illumos-gate/usr/src/boot/lib/libz/
H A Dgzwrite.c173 unsigned put = len; local
243 /* input was all buffered or compressed (put will fit in int) */
244 return (int)put;
344 /* do the printf() into the input buffer, put length in len */
429 /* do the printf() into the input buffer, put length in len */
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;
517 *put++ = (unsigned char)(state->length);
590 from = put
[all...]
H A Dinflate.c461 put = strm->next_out; \
472 strm->next_out = put; \
555 enough bits to put the accumulator on a byte boundary. After BYTEBITS()
611 unsigned char FAR *put; /* next output */ local
886 zmemcpy(put, next, copy);
890 put += copy;
1142 *put++ = 0;
1157 from = put - state->offset;
1164 *put++ = *from++;
1170 *put
[all...]
H A Ddeflate.c470 int put; local
477 put = Buf_size - s->bi_valid;
478 if (put > bits)
479 put = bits;
480 s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
481 s->bi_valid += put;
483 value >>= put; local
484 bits -= put;
624 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
1220 * necessary to put mor
[all...]
/illumos-gate/usr/src/uts/common/zmod/
H A Dinflate.c412 put = strm->next_out; \
423 strm->next_out = put; \
511 enough bits to put the accumulator on a byte boundary. After BYTEBITS()
567 unsigned char FAR *put; /* next output */ local
844 zmemcpy(put, next, copy);
848 put += copy;
1085 from = put - state->offset;
1092 *put++ = *from++;
1098 *put++ = (unsigned char)(state->length);
1110 UPDATE(state->check, put
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/include/
H A Ddb.h54 #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) */
107 int (*put) __P((const struct __db *, DBT *, const DBT *, u_int)); member in struct:__db
/illumos-gate/usr/src/cmd/mailx/
H A Dnames.c58 static struct name *put(struct name *list, struct name *node);
421 newnames = put(newnames, np);
430 newnames = put(newnames, np);
480 nlist = put(nlist, np);
704 * If we ran out of t's, put the new entry after
718 * Otherwise, put the new entry in front of the
791 put(struct name *list, struct name *node) function
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/tftp/
H A Dmain.c92 static void put(int, char **);
144 { "put", shelp, put },
368 put(int argc, char **argv) function
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_cmdsub.c46 * append, args, copy, delete, join, move, put,
235 * Join lines. Special hacks put in spaces, two spaces if
431 put(void) function
436 error(gettext("Cannot put inside global/macro"));
451 * A tricky put, of a group of lines in the middle
454 * put; it is 0 on calls from putreg.
540 * Now put linebuf back into the first line
548 * do a put of multiple lines in the middle of
1295 * If this is a change (not a delete/put),
1352 * Now put th
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dcmds.c337 put(int argc, char *argv[]) function
589 "Restarting at %lld for next get, put or append\n",
/illumos-gate/usr/src/uts/common/sys/hotplug/pci/
H A Dpcie_hp.h217 uint_t (*put)(void *cookie, off_t offset, uint_t val); member in struct:pcie_hp_regops
/illumos-gate/usr/src/uts/common/io/sfxge/
H A Dsfxge_tx.c126 * under the limit, and must move all packets from the DPL put->get list
1963 uintptr_t put; local
1979 /* Acquire the put list - replacing with an empty list */
1981 put = atomic_swap_ulong(putp, 0);
1982 stpp = (void *)put;
2017 * If TXQ locked, add the RX DPL put list and this packet to the TX DPL get list
2018 * If TXQ unlocked, atomically add this packet to TX DPL put list
2021 * For the TX DPL put or get list becoming full, in both cases there must be
2042 /* Reverse the put list onto the get list */
2060 /* Add to the head of the put lis
[all...]
/illumos-gate/usr/src/cmd/pr/
H A Dpr.c182 static int put(wchar_t);
712 (void) put(C);
719 (void) put(Sepc);
728 (void) put('\n');
733 (void) put('\n');
735 (void) put('\n');
740 (void) put('\f');
743 (void) put('\n');
769 (void) put(Sepc);
806 if (put(
1165 put(wchar_t wc) function
[all...]
/illumos-gate/usr/src/cmd/fs.d/ufs/fsdb/
H A Dfsdb.c314 static void put(u_offset_t, short);
1031 put(value+temp, objsz);
1037 put(value-temp, objsz);
1113 put(value, objsz);
2871 put((u_offset_t)temp, objsz);
3230 * put - write an item into the buffer for the current address
3236 put(u_offset_t item, short lngth) function
3438 * puta - put ascii characters into a buffer. The string
/illumos-gate/usr/src/cmd/sendmail/db/
H A Ddb.h121 u_int32_t dlen; /* RO: get/put record length. */
122 u_int32_t doff; /* RO: get/put record offset. */
126 #define DB_DBT_PARTIAL 0x04 /* Partial put/get. */
350 #define DB_APPEND 2 /* put() */
365 #define DB_NOOVERWRITE 17 /* put() */
455 int (*put) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t)); member in struct:__db
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/ecore/
H A Decore_sp_verbs.h706 /* Maximum allowed credit. put() will check against it. */
750 BOOL (*put)(struct ecore_credit_pool_obj *o, int cnt); member in struct:ecore_credit_pool_obj
/illumos-gate/usr/src/uts/common/io/myri10ge/drv/
H A Dmyri10ge.c401 uintptr_t put; local
422 put = atomic_swap_ulong(putp, 0);
423 jfree = (struct myri10ge_jpool_entry *)put;
3469 * figures out where to put the checksum by parsing

Completed in 173 milliseconds