Lines Matching defs:tin
23 DES_LONG tin[2];
40 tin[0] = sin0 ^ xor0;
41 tin[1] = sin1 ^ xor1;
42 DES_encrypt1((DES_LONG *)tin, schedule, DES_ENCRYPT);
43 tout0 = tin[0];
44 tout1 = tin[1];
56 tin[0] = sin0;
57 tin[1] = sin1;
58 DES_encrypt1((DES_LONG *)tin, schedule, DES_DECRYPT);
59 tout0 = tin[0] ^ xor0;
60 tout1 = tin[1] ^ xor1;
70 tin[0] = tin[1] = 0;