• Home
  • Raw
  • Download

Lines Matching full: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);
153 #define read_block(io, left, right) \ argument
154 movl (io), left##d; \
156 bswapl left##d; \
159 #define write_block(io, left, right) \ argument
160 bswapl left##d; \
162 movl left##d, (io); \
265 #define initial_permutation3(left, right) \ argument
266 do_permutation(left##0d, right##0d, 4, 0x0f0f0f0f); \
267 do_permutation(left##0d, right##0d, 16, 0x0000ffff); \
268 do_permutation(left##1d, right##1d, 4, 0x0f0f0f0f); \
269 do_permutation(left##1d, right##1d, 16, 0x0000ffff); \
270 do_permutation(left##2d, right##2d, 4, 0x0f0f0f0f); \
271 do_permutation(left##2d, right##2d, 16, 0x0000ffff); \
273 do_permutation(right##0d, left##0d, 2, 0x33333333); \
274 do_permutation(right##0d, left##0d, 8, 0x00ff00ff); \
275 do_permutation(right##1d, left##1d, 2, 0x33333333); \
276 do_permutation(right##1d, left##1d, 8, 0x00ff00ff); \
277 do_permutation(right##2d, left##2d, 2, 0x33333333); \
278 do_permutation(right##2d, left##2d, 8, 0x00ff00ff); \
282 movl left##0d, RW0d; \
286 xorl RW0d, left##0d; \
288 roll $1, left##0d; \
290 expand_to_64bits(left##0, RT3); \
291 movl left##1d, RW1d; \
295 xorl RW1d, left##1d; \
297 roll $1, left##1d; \
299 expand_to_64bits(left##1, RT3); \
300 movl left##2d, RW2d; \
304 xorl RW2d, left##2d; \
306 roll $1, left##2d; \
308 expand_to_64bits(left##2, RT3);
310 #define final_permutation3(left, right) \ argument
312 compress_to_64bits(left##0); \
314 rorl $1, left##0d; \
315 xorl left##0d, RW0d; \
318 xorl RW0d, left##0d; \
321 compress_to_64bits(left##1); \
323 rorl $1, left##1d; \
324 xorl left##1d, RW1d; \
327 xorl RW1d, left##1d; \
330 compress_to_64bits(left##2); \
332 rorl $1, left##2d; \
333 xorl left##2d, RW2d; \
336 xorl RW2d, left##2d; \
339 do_permutation(right##0d, left##0d, 8, 0x00ff00ff); \
340 do_permutation(right##0d, left##0d, 2, 0x33333333); \
341 do_permutation(right##1d, left##1d, 8, 0x00ff00ff); \
342 do_permutation(right##1d, left##1d, 2, 0x33333333); \
343 do_permutation(right##2d, left##2d, 8, 0x00ff00ff); \
344 do_permutation(right##2d, left##2d, 2, 0x33333333); \
346 do_permutation(left##0d, right##0d, 16, 0x0000ffff); \
347 do_permutation(left##0d, right##0d, 4, 0x0f0f0f0f); \
348 do_permutation(left##1d, right##1d, 16, 0x0000ffff); \
349 do_permutation(left##1d, right##1d, 4, 0x0f0f0f0f); \
350 do_permutation(left##2d, right##2d, 16, 0x0000ffff); \
351 do_permutation(left##2d, right##2d, 4, 0x0f0f0f0f);