Home | History | Annotate | Download | only in des

Lines Matching refs:tout1

65 	register DES_LONG tout0,tout1,tin0,tin1;
72 c2l(iv,tout1);
84 tin1^=tout1; tin[1]=tin1;
88 tout1=tin[1];
93 l2c(tout1,out);
97 Transform the data in tout1 so that it will
101 tout1 = ((tout1 >> 24L) & 0x000000FF)
102 | ((tout1 >> 8L) & 0x0000FF00)
103 | ((tout1 << 8L) & 0x00FF0000)
104 | ((tout1 << 24L) & 0xFF000000);
105 return(tout1);