Lines Matching refs:temp
28 .macro mul_by_x, out, in, temp, const
29 sshr \temp, \in, #7
31 and \temp, \temp, \const
32 eor \out, \out, \temp
36 .macro mul_by_x2, out, in, temp, const
37 ushr \temp, \in, #6
39 pmul \temp, \temp, \const
40 eor \out, \out, \temp
44 .macro prepare, sbox, shiftrows, temp
46 ldr_l q13, \shiftrows, \temp
47 ldr_l q14, .Lror32by8, \temp
48 adr_l \temp, \sbox
49 ld1 {v16.16b-v19.16b}, [\temp], #64
50 ld1 {v20.16b-v23.16b}, [\temp], #64
51 ld1 {v24.16b-v27.16b}, [\temp], #64
52 ld1 {v28.16b-v31.16b}, [\temp]
56 .macro enc_prepare, ignore0, ignore1, temp
57 prepare crypto_aes_sbox, .LForward_ShiftRows, \temp
60 .macro enc_switch_key, ignore0, ignore1, temp
65 .macro dec_prepare, ignore0, ignore1, temp
66 prepare crypto_aes_inv_sbox, .LReverse_ShiftRows, \temp