HomeSort by: relevance | last modified time | path
    Searched refs:put (Results 1 - 25 of 206) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/games/tetris/
screen.h 46 #define putpad(s) tputs(s, 1, put)
48 int put(int); /* just calls putchar; for tputs */
  /src/bin/stty/
print.c 86 #define put(n, f, d) \ macro
93 put("-icanon", ICANON, 1);
94 put("-isig", ISIG, 1);
95 put("-iexten", IEXTEN, 1);
96 put("-echo", ECHO, 1);
97 put("-echoe", ECHOE, 0);
98 put("-echok", ECHOK, 0);
99 put("-echoke", ECHOKE, 0);
100 put("-echonl", ECHONL, 0);
101 put("-echoctl", ECHOCTL, 0)
    [all...]
  /src/usr.bin/sort/
append.c 75 append(RECHEADER **keylist, int nelem, FILE *fp, put_func_t put)
85 put(crec, fp);
91 put(crec, fp);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
clb069.h 10 __u32 put; member in struct:nvif_clb069_v0
  /src/sys/dev/microcode/tools/
bin2blob.c 59 put(uint32_t val) function in typeref:typename:void
102 put(SIG);
103 put(slen);
104 put(dlen);
108 put(*dp++);
  /src/sys/lib/libsa/
subr_prf.c 81 #define KPRINTN(base) kprintn(put, ul, base, lflag, width)
86 put('0'); \
93 put(' '); \
100 put(' '); \
104 #define KPRINTN(base) kprintn(put, ul, base)
163 kdoprnt(void (*put)(int), const char *fmt, va_list ap)
178 put(ch);
249 put(ch & 0xFF);
261 put(ch);
275 put('-')
    [all...]
  /src/common/dist/zlib/examples/
gznorm.c 118 unsigned char *put; // next input buffer location to process local in function:gzip_normalize
132 strm.next_in = put = dat;
170 // just consumed. It is therefore assured that put < strm.next_in.
183 put = strm.next_in;
194 // put..strm.next_in-1 is the compressed data that has been
198 // available, i.e., put < strm.next_in. If prev is -1, then
201 // buffer, possibly combined with the bits in *put, contain
238 buf += (unsigned long)*put++ << num;
252 if (put == strm.next_in)
256 buf += (unsigned long)*put++ << num
    [all...]
  /src/usr.bin/make/unit-tests/
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.
  /src/sys/arch/atari/dev/
ms.c 139 int get, put; local in function:mouse_soft
193 put = ms->ms_events.ev_put;
194 fe = &ms->ms_events.ev_q[put];
202 if ((mbut = (rel_ms->id ^ ms->ms_buttons)) == 0 && (put != get)) {
220 if ((++put) % EV_QSIZE == get) {
221 put--;
227 if (put >= EV_QSIZE) {
228 put = 0;
235 if ((++put) % EV_QSIZE == get) {
236 put--
    [all...]
  /src/sys/dev/wscons/
wsevent.c 178 ev->get = ev->put = 0;
241 while (ev->get == ev->put) {
257 if (ev->put < ev->get)
260 cnt = ev->put - ev->get; /* events in [get..put) */
269 * stop. Otherwise move from front of queue to put index, if there
273 n == 0 || error || (cnt = ev->put) == 0)
289 if (ev->get != ev->put)
315 if (ev->get == ev->put)
318 if (ev->get < ev->put)
    [all...]
wseventvar.h 83 volatile u_int put; /* put (write) index (modified by interrupt) */ member in struct:wseventvar
  /src/lib/libskey/
Makefile 6 SRCS= skeylogin.c skeysubr.c put.c
  /src/sys/arch/amiga/dev/
ms.c 264 int mb, ub, d, get, put, any, port; local in function:msintr
349 put = ms->ms_events.ev_put;
350 fe = &ms->ms_events.ev_q[put];
360 if ((++put) % EV_QSIZE == get) {
361 put--;
371 if (put >= EV_QSIZE) {
372 put = 0;
380 if ((++put) % EV_QSIZE == get) {
381 put--;
390 if (put >= EV_QSIZE)
    [all...]
  /src/sys/dev/clk/
clk_backend.h 52 void (*put)(void *, struct clk *); member in struct:clk_funcs
  /src/common/dist/zlib/contrib/puff/
pufftest.c 90 int ret, put = 0, fail = 0; local in function:main
101 put = 1;
103 fail = 1, put = 1;
147 if (put && ret == 0) {
  /src/sys/arch/sparc/dev/
ms_pckbport.c 198 int mb, ub, d, get, put, any; local in function:ms_pckbport_input
236 put = ms->ms_events.ev_put;
237 fe = &ms->ms_events.ev_q[put];
239 /* NEXT prepares to put the next event, backing off if necessary */
241 if ((++put) % EV_QSIZE == get) { \
242 --put; \
247 /* ADVANCE completes the `put' of the event */
250 if (put >= EV_QSIZE) { \
251 put = 0; \
294 ms->ms_events.ev_put = put;
    [all...]
  /src/sys/dev/sun/
ms.c 235 int mb, ub, d, get, put, any; local in function:ms_input
331 put = ms->ms_events.ev_put;
332 fe = &ms->ms_events.ev_q[put];
334 /* NEXT prepares to put the next event, backing off if necessary */
336 if ((++put) % EV_QSIZE == get) { \
337 put--; \
340 /* ADVANCE completes the `put' of the event */
343 if (put >= EV_QSIZE) { \
344 put = 0; \
383 ms->ms_events.ev_put = put;
    [all...]
kbdsun.c 313 int put; local in function:kbd_sun_output
315 put = k->k_tbput;
316 k->k_tbuf[put] = (uint8_t)c;
317 put = (put + 1) & KBD_TX_RING_MASK;
319 /* Would overrun if increment makes (put == get) */
320 if (put == k->k_tbget) {
325 k->k_tbput = put;
ms_zs.c 171 int put, put_next; local in function:ms_zs_rxint
175 put = ms->ms_rbput;
189 ms->ms_rbuf[put] = (c << 8) | rr1;
190 put_next = (put + 1) & MS_RX_RING_MASK;
192 /* Would overrun if increment makes (put==get). */
197 put = put_next;
201 ms->ms_rbput = put;
kbd_zs.c 212 int put, put_next; local in function:kbd_zs_rxint
216 put = k->k_rbput;
253 k->k_rbuf[put] = (c << 8) | rr1;
254 put_next = (put + 1) & KBD_RX_RING_MASK;
256 /* Would overrun if increment makes (put==get). */
261 put = put_next;
265 k->k_rbput = put;
  /src/sys/arch/x68k/dev/
ms.c 127 volatile u_int ms_rbput; /* ring buffer `put' index */
368 int mb, ub, d, get, put, any; local in function:ms_input
422 put = ms->ms_events.ev_put;
423 fe = &ms->ms_events.ev_q[put];
425 /* NEXT prepares to put the next event, backing off if necessary */
427 if ((++put) % EV_QSIZE == get) { \
428 put--; \
431 /* ADVANCE completes the `put' of the event */
434 if (put >= EV_QSIZE) { \
435 put = 0;
498 int put, put_next; local in function:ms_rxint
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_dma.h 39 * There's a hw race condition where you can't jump to your PUT offset,
149 if (chan->dma.cur == chan->dma.put)
154 nv50_dma_push(chan, chan->push.addr + (chan->dma.put << 2),
155 (chan->dma.cur - chan->dma.put) << 2);
160 chan->dma.put = chan->dma.cur;
166 chan->dma.cur = chan->dma.put;
nouveau_chan.h 37 int put; member in struct:nouveau_channel::__anon052d39320208
  /src/usr.sbin/mopd/common/
Makefile 9 print.c put.c rc.c version.c
  /src/common/dist/zlib/contrib/infback9/
infback9.c 175 put = window; \
178 if (out(out_desc, put, (unsigned)left)) { \
216 unsigned char FAR *put; /* next output */ local in function:inflateBack9
257 put = window;
323 zmemcpy(put, next, copy);
327 put += copy;
483 *put++ = (unsigned char)(length);
555 from = put + copy;
559 from = put - offset;
566 *put++ = *from++
    [all...]

Completed in 55 milliseconds

1 2 3 4 5 6 7 8 9