Lines Matching full:rotate
82 /* Things have been modified so that the initial rotate is in des_encrypt1()
90 r=ROTATE(r,29)&0xffffffffL; in des_encrypt1()
91 l=ROTATE(l,29)&0xffffffffL; in des_encrypt1()
155 /* rotate and clear the top bits on machines with 8byte longs */ in des_encrypt1()
156 l=ROTATE(l,3)&0xffffffffL; in des_encrypt1()
157 r=ROTATE(r,3)&0xffffffffL; in des_encrypt1()
179 /* Things have been modified so that the initial rotate is in des_encrypt2()
186 r=ROTATE(r,29)&0xffffffffL; in des_encrypt2()
187 l=ROTATE(l,29)&0xffffffffL; in des_encrypt2()
250 /* rotate and clear the top bits on machines with 8byte longs */ in des_encrypt2()
251 data[0]=ROTATE(l,3)&0xffffffffL; in des_encrypt2()
252 data[1]=ROTATE(r,3)&0xffffffffL; in des_encrypt2()