Lines Matching refs:x3
140 register RC2_INT x0,x1,x2,x3,t; in RC2_encrypt() local
148 x3=(RC2_INT)(l>>16L); in RC2_encrypt()
156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff; in RC2_encrypt()
158 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff; in RC2_encrypt()
160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff; in RC2_encrypt()
162 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff; in RC2_encrypt()
163 x3=(t<<5)|(t>>11); in RC2_encrypt()
170 x0+=p1[x3&0x3f]; in RC2_encrypt()
173 x3+=p1[x2&0x3f]; in RC2_encrypt()
178 d[1]=(unsigned long)(x2&0xffff)|((unsigned long)(x3&0xffff)<<16L); in RC2_encrypt()
185 register RC2_INT x0,x1,x2,x3,t; in RC2_decrypt() local
193 x3=(RC2_INT)(l>>16L); in RC2_decrypt()
202 t=((x3<<11)|(x3>>5))&0xffff; in RC2_decrypt()
203 x3=(t-(x0& ~x2)-(x1&x2)- *(p0--))&0xffff; in RC2_decrypt()
205 x2=(t-(x3& ~x1)-(x0&x1)- *(p0--))&0xffff; in RC2_decrypt()
207 x1=(t-(x2& ~x0)-(x3&x0)- *(p0--))&0xffff; in RC2_decrypt()
209 x0=(t-(x1& ~x3)-(x2&x3)- *(p0--))&0xffff; in RC2_decrypt()
216 x3=(x3-p1[x2&0x3f])&0xffff; in RC2_decrypt()
219 x0=(x0-p1[x3&0x3f])&0xffff; in RC2_decrypt()
224 d[1]=(unsigned long)(x2&0xffff)|((unsigned long)(x3&0xffff)<<16L); in RC2_decrypt()