Lines Matching refs:key2
26 .macro enc_dround, key1, key2
28 enc_round q0, \key2
31 .macro dec_dround, key1, key2
33 dec_round q0, \key2
36 .macro enc_fround, key1, key2, key3
38 aese.8 q0, \key2
42 .macro dec_fround, key1, key2, key3
44 aesd.8 q0, \key2
48 .macro enc_dround_4x, key1, key2
53 enc_round q0, \key2
54 enc_round q1, \key2
55 enc_round q2, \key2
56 enc_round q3, \key2
59 .macro dec_dround_4x, key1, key2
64 dec_round q0, \key2
65 dec_round q1, \key2
66 dec_round q2, \key2
67 dec_round q3, \key2
70 .macro enc_fround_4x, key1, key2, key3
75 aese.8 q0, \key2
76 aese.8 q1, \key2
77 aese.8 q2, \key2
78 aese.8 q3, \key2
85 .macro dec_fround_4x, key1, key2, key3
90 aesd.8 q0, \key2
91 aesd.8 q1, \key2
92 aesd.8 q2, \key2
93 aesd.8 q3, \key2