Lines Matching refs:left

92 #define initial_permutation(left, right) \  argument
93 do_permutation(left##d, right##d, 4, 0x0f0f0f0f); \
94 do_permutation(left##d, right##d, 16, 0x0000ffff); \
95 do_permutation(right##d, left##d, 2, 0x33333333); \
96 do_permutation(right##d, left##d, 8, 0x00ff00ff); \
98 movl left##d, RW0d; \
102 xorl RW0d, left##d; \
104 roll $1, left##d; \
106 expand_to_64bits(left, RT3);
108 #define final_permutation(left, right) \ argument
110 compress_to_64bits(left); \
112 rorl $1, left##d; \
113 xorl left##d, RW0d; \
116 xorl RW0d, left##d; \
118 do_permutation(right##d, left##d, 8, 0x00ff00ff); \
119 do_permutation(right##d, left##d, 2, 0x33333333); \
120 do_permutation(left##d, right##d, 16, 0x0000ffff); \
121 do_permutation(left##d, right##d, 4, 0x0f0f0f0f);
161 #define read_block(io, left, right) \ argument
162 movl (io), left##d; \
164 bswapl left##d; \
167 #define write_block(io, left, right) \ argument
168 bswapl left##d; \
170 movl left##d, (io); \
273 #define initial_permutation3(left, right) \ argument
274 do_permutation(left##0d, right##0d, 4, 0x0f0f0f0f); \
275 do_permutation(left##0d, right##0d, 16, 0x0000ffff); \
276 do_permutation(left##1d, right##1d, 4, 0x0f0f0f0f); \
277 do_permutation(left##1d, right##1d, 16, 0x0000ffff); \
278 do_permutation(left##2d, right##2d, 4, 0x0f0f0f0f); \
279 do_permutation(left##2d, right##2d, 16, 0x0000ffff); \
281 do_permutation(right##0d, left##0d, 2, 0x33333333); \
282 do_permutation(right##0d, left##0d, 8, 0x00ff00ff); \
283 do_permutation(right##1d, left##1d, 2, 0x33333333); \
284 do_permutation(right##1d, left##1d, 8, 0x00ff00ff); \
285 do_permutation(right##2d, left##2d, 2, 0x33333333); \
286 do_permutation(right##2d, left##2d, 8, 0x00ff00ff); \
290 movl left##0d, RW0d; \
294 xorl RW0d, left##0d; \
296 roll $1, left##0d; \
298 expand_to_64bits(left##0, RT3); \
299 movl left##1d, RW1d; \
303 xorl RW1d, left##1d; \
305 roll $1, left##1d; \
307 expand_to_64bits(left##1, RT3); \
308 movl left##2d, RW2d; \
312 xorl RW2d, left##2d; \
314 roll $1, left##2d; \
316 expand_to_64bits(left##2, RT3);
318 #define final_permutation3(left, right) \ argument
320 compress_to_64bits(left##0); \
322 rorl $1, left##0d; \
323 xorl left##0d, RW0d; \
326 xorl RW0d, left##0d; \
329 compress_to_64bits(left##1); \
331 rorl $1, left##1d; \
332 xorl left##1d, RW1d; \
335 xorl RW1d, left##1d; \
338 compress_to_64bits(left##2); \
340 rorl $1, left##2d; \
341 xorl left##2d, RW2d; \
344 xorl RW2d, left##2d; \
347 do_permutation(right##0d, left##0d, 8, 0x00ff00ff); \
348 do_permutation(right##0d, left##0d, 2, 0x33333333); \
349 do_permutation(right##1d, left##1d, 8, 0x00ff00ff); \
350 do_permutation(right##1d, left##1d, 2, 0x33333333); \
351 do_permutation(right##2d, left##2d, 8, 0x00ff00ff); \
352 do_permutation(right##2d, left##2d, 2, 0x33333333); \
354 do_permutation(left##0d, right##0d, 16, 0x0000ffff); \
355 do_permutation(left##0d, right##0d, 4, 0x0f0f0f0f); \
356 do_permutation(left##1d, right##1d, 16, 0x0000ffff); \
357 do_permutation(left##1d, right##1d, 4, 0x0f0f0f0f); \
358 do_permutation(left##2d, right##2d, 16, 0x0000ffff); \
359 do_permutation(left##2d, right##2d, 4, 0x0f0f0f0f);