Searched refs:tin (Results 1 - 19 of 19) sorted by path

/freebsd-9.3-release/contrib/telnet/telnet/
H A Dexterns.h118 tin, /* Terminal input file descriptor */
H A Dsys_bsd.c66 tin, /* Input file descriptor */ variable
130 tin = fileno(stdin);
143 return read(tin, buf, n);
408 tcgetattr(tin, &tmp_tc);
415 tcsetattr(tin, TCSADRAIN, &tmp_tc);
671 ioctl(tin, TIOCLSET, (char *)&lmode);
672 ioctl(tin, TIOCSLTC, (char *)&ltc);
673 ioctl(tin, TIOCSETC, (char *)&tc);
674 ioctl(tin, TIOCSETN, (char *)&sb);
676 if (tcsetattr(tin, TCSADRAI
[all...]
/freebsd-9.3-release/crypto/heimdal/appl/telnet/telnet/
H A Dexterns.h71 tin, /* Terminal input file descriptor */
H A Dsys_bsd.c45 tin, /* Input file descriptor */ variable
83 tin = fileno(stdin);
101 return read(tin, buf, n);
342 tcgetattr(tin, &tmp_tc);
347 tcsetattr(tin, TCSADRAIN, &tmp_tc);
506 if (tcsetattr(tin, TCSADRAIN, &tmp_tc) < 0)
507 tcsetattr(tin, TCSANOW, &tmp_tc);
509 ioctl(tin, FIONBIO, (char *)&onoff);
783 || tin >= FD_SETSIZE)
793 FD_SET(tin,
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/bf/
H A Dbf_cbc.c68 BF_LONG tin[2]; local
79 tin[0] = tin0;
80 tin[1] = tin1;
81 BF_encrypt(tin, schedule);
82 tout0 = tin[0];
83 tout1 = tin[1];
91 tin[0] = tin0;
92 tin[1] = tin1;
93 BF_encrypt(tin, schedule);
94 tout0 = tin[
[all...]
H A Dbf_enc.c231 BF_LONG tin[2]; local
242 tin[0] = tin0;
243 tin[1] = tin1;
244 BF_encrypt(tin, schedule);
245 tout0 = tin[0];
246 tout1 = tin[1];
254 tin[0] = tin0;
255 tin[1] = tin1;
256 BF_encrypt(tin, schedule);
257 tout0 = tin[
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/cast/
H A Dc_enc.c133 CAST_LONG tin[2]; local
144 tin[0] = tin0;
145 tin[1] = tin1;
146 CAST_encrypt(tin, ks);
147 tout0 = tin[0];
148 tout1 = tin[1];
156 tin[0] = tin0;
157 tin[1] = tin1;
158 CAST_encrypt(tin, ks);
159 tout0 = tin[
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/des/
H A Dcbc_cksm.c67 DES_LONG tin[2]; local
81 tin[0] = tin0;
83 tin[1] = tin1;
84 DES_encrypt1((DES_LONG *)tin, schedule, DES_ENCRYPT);
86 tout0 = tin[0];
87 tout1 = tin[1];
93 tout0 = tin0 = tin1 = tin[0] = tin[1] = 0;
H A Ddes_enc.c303 DES_LONG tin[2]; local
319 tin[0] = tin0;
320 tin[1] = tin1;
321 DES_encrypt3((DES_LONG *)tin, ks1, ks2, ks3);
322 tout0 = tin[0];
323 tout1 = tin[1];
333 tin[0] = tin0;
334 tin[1] = tin1;
335 DES_encrypt3((DES_LONG *)tin, ks1, ks2, ks3);
336 tout0 = tin[
[all...]
H A Dede_cbcm_enc.c85 DES_LONG tin[2]; local
97 tin[0] = m0;
98 tin[1] = m1;
99 DES_encrypt1(tin, ks3, 1);
100 m0 = tin[0];
101 m1 = tin[1];
112 tin[0] = tin0;
113 tin[1] = tin1;
114 DES_encrypt1(tin, ks1, 1);
115 tin[
[all...]
H A Dncbc_enc.c78 DES_LONG tin[2]; local
90 tin[0] = tin0;
92 tin[1] = tin1;
93 DES_encrypt1((DES_LONG *)tin, _schedule, DES_ENCRYPT);
94 tout0 = tin[0];
96 tout1 = tin[1];
102 tin[0] = tin0;
104 tin[1] = tin1;
105 DES_encrypt1((DES_LONG *)tin, _schedule, DES_ENCRYPT);
106 tout0 = tin[
[all...]
H A Dpcbc_enc.c66 DES_LONG tin[2]; local
83 tin[0] = sin0 ^ xor0;
84 tin[1] = sin1 ^ xor1;
85 DES_encrypt1((DES_LONG *)tin, schedule, DES_ENCRYPT);
86 tout0 = tin[0];
87 tout1 = tin[1];
99 tin[0] = sin0;
100 tin[1] = sin1;
101 DES_encrypt1((DES_LONG *)tin, schedule, DES_DECRYPT);
102 tout0 = tin[
[all...]
H A Dxcbc_enc.c137 DES_LONG tin[2]; local
156 tin[0] = tin0;
158 tin[1] = tin1;
159 DES_encrypt1(tin, schedule, DES_ENCRYPT);
160 tout0 = tin[0] ^ outW0;
162 tout1 = tin[1] ^ outW1;
168 tin[0] = tin0;
170 tin[1] = tin1;
171 DES_encrypt1(tin, schedule, DES_ENCRYPT);
172 tout0 = tin[
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/idea/
H A Di_cbc.c69 unsigned long tin[2]; local
80 tin[0] = tin0;
81 tin[1] = tin1;
82 idea_encrypt(tin, ks);
83 tout0 = tin[0];
85 tout1 = tin[1];
92 tin[0] = tin0;
93 tin[1] = tin1;
94 idea_encrypt(tin, ks);
95 tout0 = tin[
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/rc2/
H A Drc2_cbc.c68 unsigned long tin[2]; local
79 tin[0] = tin0;
80 tin[1] = tin1;
81 RC2_encrypt(tin, ks);
82 tout0 = tin[0];
84 tout1 = tin[1];
91 tin[0] = tin0;
92 tin[1] = tin1;
93 RC2_encrypt(tin, ks);
94 tout0 = tin[
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/rc5/
H A Drc5_enc.c70 unsigned long tin[2]; local
81 tin[0] = tin0;
82 tin[1] = tin1;
83 RC5_32_encrypt(tin, ks);
84 tout0 = tin[0];
86 tout1 = tin[1];
93 tin[0] = tin0;
94 tin[1] = tin1;
95 RC5_32_encrypt(tin, ks);
96 tout0 = tin[
[all...]
/freebsd-9.3-release/sys/dev/ce/
H A Dceddk.c1098 int tin = b->dxc[i]; local
1099 int t = tin % 32;
1100 if (tin < (c->dir?64:32) || tin > (c->dir?95:63))
1103 b->dxc[tin] = TAU32_CROSS_OFF;
/freebsd-9.3-release/sys/dev/digi/
H A Ddigi.c690 bc->tin = bc->tout;
1350 head = bc->tin;
1372 bc->tin = head;
H A Ddigireg.h51 volatile u_short tin; member in struct:board_chan

Completed in 215 milliseconds