Lines Matching refs:rounds
20 .macro load_round_keys, rounds, rk
21 cmp \rounds, #12
32 .macro enc_prepare, rounds, rk, ignore
33 load_round_keys \rounds, \rk
37 .macro enc_switch_key, rounds, rk, ignore
38 load_round_keys \rounds, \rk
42 .macro dec_prepare, rounds, rk, ignore
43 load_round_keys \rounds, \rk
91 .macro do_block_Nx, enc, rounds, i0, i1, i2, i3
92 cmp \rounds, #12
105 .macro encrypt_block, in, rounds, t0, t1, t2
106 do_block_Nx e, \rounds, \in
109 .macro encrypt_block2x, i0, i1, rounds, t0, t1, t2
110 do_block_Nx e, \rounds, \i0, \i1
113 .macro encrypt_block4x, i0, i1, i2, i3, rounds, t0, t1, t2
114 do_block_Nx e, \rounds, \i0, \i1, \i2, \i3
117 .macro decrypt_block, in, rounds, t0, t1, t2
118 do_block_Nx d, \rounds, \in
121 .macro decrypt_block2x, i0, i1, rounds, t0, t1, t2
122 do_block_Nx d, \rounds, \i0, \i1
125 .macro decrypt_block4x, i0, i1, i2, i3, rounds, t0, t1, t2
126 do_block_Nx d, \rounds, \i0, \i1, \i2, \i3