HomeSort by: relevance | last modified time | path
    Searched defs:tin (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/crypto/blowfish/
bf_cbc.c 75 BF_LONG tin[2]; local in function:BF_cbc_encrypt
88 tin[0]=tin0;
89 tin[1]=tin1;
90 BF_encrypt(tin,(const BF_KEY *)schedule);
91 tout0=tin[0];
92 tout1=tin[1];
101 tin[0]=tin0;
102 tin[1]=tin1;
103 BF_encrypt(tin,(const BF_KEY *)schedule);
104 tout0=tin[0]
    [all...]
  /src/sys/crypto/des/
des_cbc.c 71 DES_LONG tin[2]; local in function:des_ncbc_encrypt
84 tin0^=tout0; tin[0]=tin0;
85 tin1^=tout1; tin[1]=tin1;
86 des_encrypt1((DES_LONG *)tin,schedule,DES_ENCRYPT);
87 tout0=tin[0]; l2c(tout0,out);
88 tout1=tin[1]; l2c(tout1,out);
93 tin0^=tout0; tin[0]=tin0;
94 tin1^=tout1; tin[1]=tin1;
95 des_encrypt1((DES_LONG *)tin,schedule,DES_ENCRYPT);
96 tout0=tin[0]; l2c(tout0,out)
147 DES_LONG tin[2]; local in function:des_ede3_cbc_encrypt
    [all...]
  /src/usr.bin/make/unit-tests/
varname-circumflex.mk 43 .SUFFIXES: .tin .tout
45 .tin.tout:
49 /usr/include/stdio.h /usr/include/unistd.h foo.h implicit.tin:
  /src/usr.bin/systat/
icmp.c 122 u_long tin, tout; local in function:showicmp
125 for (i = tin = tout = 0; i <= ICMP_MAXTYPE; i++) {
126 tin += curstat[ICMP_STAT_INHIST + i];
130 tin += curstat[ICMP_STAT_BADCODE] + curstat[ICMP_STAT_BADLEN] +
132 mvwprintw(wnd, 2, 0, "%9lu", tin);
  /src/games/hack/
hack.eat.c 119 struct obj *tin; member in struct:__anone5ee377f0208
121 } tin; variable in typeref:struct:__anone5ee377f0208
128 if (!carried(tin.tin)) /* perhaps it was stolen? */
130 if (tin.usedtime++ >= 50) {
131 pline("You give up your attempt to open the tin.");
134 if (tin.usedtime < tin.reqtime)
137 pline("You succeed in opening the tin.");
138 useup(tin.tin)
    [all...]
  /src/usr.bin/telnet/
sys_bsd.c 73 tin, /* Input file descriptor */ variable in typeref:typename:int
83 tin = fileno(stdin);
98 return read(tin, buf, n);
270 tcgetattr(tin, &tmp_tc);
275 tcsetattr(tin, TCSADRAIN, &tmp_tc);
416 if (tcsetattr(tin, TCSADRAIN, &tmp_tc) < 0)
417 tcsetattr(tin, TCSANOW, &tmp_tc);
419 ioctl(tin, FIONBIO, &onoff);
570 set[2].fd = tin;
634 if (MODE_LOCAL_CHARS(globalmode) && isatty(tin)) {
    [all...]

Completed in 171 milliseconds