Home | History | Annotate | Download | only in rc2

Lines Matching defs:x0

140 	register RC2_INT x0,x1,x2,x3,t;
144 x0=(RC2_INT)l&0xffff;
156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff;
157 x0=(t<<1)|(t>>15);
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;
170 x0+=p1[x3&0x3f];
171 x1+=p1[x0&0x3f];
177 d[0]=(unsigned long)(x0&0xffff)|((unsigned long)(x1&0xffff)<<16L);
185 register RC2_INT x0,x1,x2,x3,t;
189 x0=(RC2_INT)l&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;
208 t=((x0<<15)|(x0>>1))&0xffff;
209 x0=(t-(x1& ~x3)-(x2&x3)- *(p0--))&0xffff;
218 x1=(x1-p1[x0&0x3f])&0xffff;
219 x0=(x0-p1[x3&0x3f])&0xffff;
223 d[0]=(unsigned long)(x0&0xffff)|((unsigned long)(x1&0xffff)<<16L);