Searched refs:tout (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-12-stable/sys/crypto/aesni/
H A Daesni_wrap.c114 __m128i tout[8]; local
125 blks->blk[6], blks->blk[7], tout);
126 top->blk[0] = tout[0];
127 top->blk[1] = tout[1];
128 top->blk[2] = tout[2];
129 top->blk[3] = tout[3];
130 top->blk[4] = tout[4];
131 top->blk[5] = tout[5];
132 top->blk[6] = tout[6];
133 top->blk[7] = tout[
153 __m128i tout[8]; local
215 __m128i tout[8]; local
[all...]
/freebsd-12-stable/usr.sbin/timed/timed/
H A Dmeasure.c76 struct timeval tdone, tcur, ttrans, twait, tout; local
103 tout.tv_sec = tout.tv_usec = 0;
105 if (select(sock_raw+1, &ready, 0,0, &tout)) {
132 mstotvround(&tout, maxmsec);
133 timevaladd(&tdone, &tout); /* when we give up */
169 timevalsub(&tout, &ttrans, &tcur);
170 if (tout.tv_sec < 0)
171 tout.tv_sec = 0;
175 (fd_set *)0, &tout);
[all...]
/freebsd-12-stable/sys/arm/altera/socfpga/
H A Dsocfpga_a10_manager.c116 int tout; local
126 tout = 1000;
127 while (tout > 0) {
132 tout--;
135 if (tout == 0) {
150 int tout; local
231 tout = 10;
232 while (tout--) {
243 if (tout == 0) {
257 int tout; local
[all...]
H A Dsocfpga_manager.c177 int tout; local
179 tout = 1000;
180 while (tout > 0) {
183 tout--;
186 if (tout == 0) {
269 int tout; local
279 tout = 1000;
280 while (tout > 0) {
285 tout--;
288 if (tout
[all...]
/freebsd-12-stable/usr.sbin/timed/timedc/
H A Dcmds.c86 struct timeval tout, now; local
94 tout.tv_sec = 2;
95 tout.tv_usec = 0;
109 (fd_set *)0, &tout);
271 struct timeval tout; local
312 tout.tv_sec = 15;
313 tout.tv_usec = 0;
317 &tout)) {
427 struct timeval tout; local
466 tout
[all...]
/freebsd-12-stable/contrib/bc/tests/
H A Dafl.py48 def run_test(cmd, exebase, tout, indata, out, file, type, test, environ=None):
50 p = subprocess.run(cmd, timeout=tout, input=indata, stdout=subprocess.PIPE,
56 def create_test(file, tout, environ=None):
70 run_test(exe + [ file ], exebase, tout, halt.encode(), out, file, "file", file, environ)
77 run_test(exe, exebase, tout, content, out, file,
/freebsd-12-stable/contrib/ipfilter/ipsend/
H A Dsbpf.c55 int initdevice(device, tout)
57 int tout;
122 timeout = tout;
H A Dsnit.c60 int initdevice(device, tout)
62 int tout;
84 timeout = tout;
H A Dsdlpi.c55 int initdevice(device, tout)
57 int tout;
H A Dsockraw.c37 int initdevice(char *device, int tout) argument
/freebsd-12-stable/bin/date/
H A Dnetdate.c70 struct timeval tout; local
136 tout.tv_sec = waittime;
137 tout.tv_usec = 0;
141 found = select(FD_SETSIZE, &ready, (fd_set *)0, (fd_set *)0, &tout);
/freebsd-12-stable/contrib/libbegemot/
H A Drpoll.c496 tval_t tout; local
527 if((tout = tims[tfd[0]].when - now) < 0)
528 tout = 0;
530 tout = INFTIM;
532 tout = 0;
535 fprintf(stderr, "rpoll -- selecting with tout=%u", tout);
539 ret = poll(pfd, regs_used, tout == INFTIM ? INFTIM : (tout / 1000));
546 if(tout !
[all...]
/freebsd-12-stable/contrib/blacklist/bin/
H A Dblacklistd.c418 int c, tout, flags, flush, restore, ret; local
429 tout = 0;
471 tout = atoi(optarg) * 1000;
496 if (tout == 0)
497 tout = 5000;
499 if (tout == 0)
500 tout = 15000;
557 ret = poll(pfd, (nfds_t)nfd, tout);
/freebsd-12-stable/sys/dev/stg/
H A Dtmc18c30.c503 int tout; local
514 tout = sc->sc_tmaxcnt;
515 while (tout -- > 0)
579 if (tout <= 0)
592 int tout; local
603 tout = sc->sc_tmaxcnt;
604 while (tout -- > 0)
656 if (tout <= 0)
760 int tout; local
783 tout
1262 int tout, count; local
[all...]
/freebsd-12-stable/contrib/telnet/telnet/
H A Dsys_bsd.c62 tout, /* Output file descriptor */ variable
126 tout = fileno(stdout);
134 return write(tout, buf, n);
678 ioctl(tout, FIONBIO, (char *)&onoff);
858 if (ttyout && tout > maxfd)
859 maxfd = tout;
886 FD_SET(tout, obitsp);
1065 if (FD_ISSET(tout, obitsp)) {
1066 FD_CLR(tout, obitsp);
H A Dutilities.c867 FD_SET(tout, &o);
868 (void) select(tout+1, (fd_set *) 0, &o, (fd_set *) 0,
873 FD_SET(tout, &o);
874 (void) select(tout+1, (fd_set *) 0, &o, (fd_set *) 0,
/freebsd-12-stable/crypto/heimdal/appl/telnet/telnet/
H A Dsys_bsd.c44 tout, /* Output file descriptor */ variable
82 tout = fileno(stdout);
95 return write(tout, buf, n);
510 ioctl(tout, FIONBIO, (char *)&onoff);
782 || tout >= FD_SETSIZE
790 FD_SET(tout, &obits);
975 if (FD_ISSET(tout, &obits)) {
976 FD_CLR(tout, &obits);
H A Dutilities.c820 if (tout >= FD_SETSIZE)
824 FD_SET(tout, &outs);
825 select(tout+1, 0, &outs, 0,
830 FD_SET(tout, &outs);
831 select(tout+1, 0, &outs, 0,
/freebsd-12-stable/lib/libc/rpc/
H A Dpmap_rmt.c83 struct timeval tout, u_long *port_ptr)
107 &r, tout);
81 pmap_rmtcall(struct sockaddr_in *addr, u_long prog, u_long vers, u_long proc, xdrproc_t xdrargs, caddr_t argsp, xdrproc_t xdrres, caddr_t resp, struct timeval tout, u_long *port_ptr) argument
/freebsd-12-stable/contrib/netbsd-tests/lib/libc/rpc/
H A Dt_rpc.c101 static struct timeval tout = {1, 0}; variable in typeref:struct:timeval
162 (xdrproc_t)xdr_int, (void *)&resp, tout);
213 (xdrproc_t)xdr_int, (void *)&resp, tout);
220 (xdrproc_t)xdr_void, NULL, tout);
/freebsd-12-stable/sys/dev/nsp/
H A Dnsp.c933 int tout; local
936 for (tout = 0; tout < DEV_BSIZE / 10; tout ++)
959 int tout, padding, datalen; local
963 tout = sc->sc_tmaxcnt;
1014 if ((-- tout) <= 0)
1037 int tout, datalen; local
1040 tout = sc->sc_tmaxcnt;
1124 if ((-- tout) <
1758 int tout; local
[all...]
/freebsd-12-stable/tools/tools/net80211/w00t/prga/
H A Dprga.c337 int tout = 10*1000; local
348 if (el >= tout) {
363 el = tout - el;
402 int tout = 20*1000; local
417 if (el >= tout) {
424 el = tout - el;
/freebsd-12-stable/sys/dev/ncv/
H A Dncr53c500.c676 int tout; local
682 tout = sc->sc_tmaxcnt;
684 while (reqlen >= FIFO_F_SZ && tout -- > 0)
711 while (reqlen > 0 && tout -- > 0)
741 int tout; local
746 tout = sc->sc_tmaxcnt;
749 while (reqlen >= FIFO_F_SZ && tout -- > 0)
773 while (reqlen > 0 && tout -- > 0)
/freebsd-12-stable/sys/ddb/
H A Ddb_command.c760 db_expr_t old_radix, tout; local
765 err = db_expression(&tout);
772 tout = 0;
773 } else if ((tout & WD_INTERVAL) == WD_TO_NEVER) {
777 EVENTHANDLER_INVOKE(watchdog_list, tout, &i);
/freebsd-12-stable/tools/tools/net80211/w00t/expand/
H A Dexpand.c374 int tout = 10*1000; local
386 if (el >= tout) {
395 el = tout - el;

Completed in 372 milliseconds

12