Lines Matching refs:tout1
22 register DES_LONG tout0, tout1, tin0, tin1;
29 c2l(iv, tout1);
39 tin1 ^= tout1;
43 tout1 = tin[1];
47 l2c(tout1, out);
51 * Transform the data in tout1 so that it will match the return value
54 tout1 = ((tout1 >> 24L) & 0x000000FF)
55 | ((tout1 >> 8L) & 0x0000FF00)
56 | ((tout1 << 8L) & 0x00FF0000)
57 | ((tout1 << 24L) & 0xFF000000);
58 return tout1;