Home | History | Annotate | Download | only in rc2

Lines Matching refs:x3

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