Home | History | Annotate | Download | only in cipher

Lines Matching refs:xr

249 xr, int[] table)
259 xr ^= F(xl) ^ P[i];
260 xl ^= F(xr) ^ P[i + 1];
263 xr ^= P[ROUNDS + 1];
265 table[s] = xr;
268 xr = xl; // end of cycle swap
349 int xr = BytesTo32bits(src, srcIndex + 4);
355 xr ^= F(xl) ^ P[i];
356 xl ^= F(xr) ^ P[i + 1];
359 xr ^= P[ROUNDS + 1];
361 Bits32ToBytes(xr, dst, dstIndex);
373 int xr = BytesTo32bits(src, srcIndex + 4);
379 xr ^= F(xl) ^ P[i];
380 xl ^= F(xr) ^ P[i - 1];
383 xr ^= P[0];
385 Bits32ToBytes(xr, dst, dstIndex);