Lines Matching +full:4 +full:- +full:temp
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * linux/arch/arm64/crypto/aes-ce.S - AES cipher for ARMv8 with
6 * Copyright (C) 2013 - 2017 Linaro Ltd <ard.biesheuvel@linaro.org>
15 .arch armv8-a+crypto
32 ld1 {v17.4s-v18.4s}, [\rk], #32
33 1111: ld1 {v19.4s-v20.4s}, [\rk], #32
34 2222: ld1 {v21.4s-v24.4s}, [\rk], #64
35 ld1 {v25.4s-v28.4s}, [\rk], #64
36 ld1 {v29.4s-v31.4s}, [\rk]
40 .macro enc_prepare, rounds, rk, temp argument
41 mov \temp, \rk
42 load_round_keys \rounds, \temp
46 .macro enc_switch_key, rounds, rk, temp argument
47 mov \temp, \rk
48 load_round_keys \rounds, \temp
52 .macro dec_prepare, rounds, rk, temp argument
53 mov \temp, \rk
54 load_round_keys \rounds, \temp
152 #include "aes-modes.S"