Lines Matching defs:round_key
61 const av_aes_block *round_key)
63 dst->u64[0] = src->u64[0] ^ round_key->u64[0];
64 dst->u64[1] = src->u64[1] ^ round_key->u64[1];
68 const av_aes_block *round_key)
70 dst->u64[0] = AV_RN64(src) ^ round_key->u64[0];
71 dst->u64[1] = AV_RN64(src + 8) ^ round_key->u64[1];
75 const av_aes_block *round_key)
77 AV_WN64(dst, src->u64[0] ^ round_key->u64[0]);
78 AV_WN64(dst + 8, src->u64[1] ^ round_key->u64[1]);
129 addkey(&a->state[1], &a->state[0], &a->round_key[r]);
139 addkey_s(&a->state[1], src, &a->round_key[rounds]);
143 addkey_d(dst, &a->state[0], &a->round_key[0]);
155 addkey_s(&a->state[1], src, &a->round_key[rounds]);
161 addkey_d(dst, &a->state[0], &a->round_key[0]);
238 memcpy(a->round_key[0].u8, key, KC * 4);
254 memcpy(a->round_key[0].u8 + t, tk, KC * 4);
260 tmp[2] = a->round_key[i];
263 a->round_key[i] = tmp[0];
267 FFSWAP(av_aes_block, a->round_key[i], a->round_key[rounds - i]);