Home
last modified time | relevance | path

Searched refs:round_key (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavutil/
Daes.c61 const av_aes_block *round_key) in addkey() argument
63 dst->u64[0] = src->u64[0] ^ round_key->u64[0]; in addkey()
64 dst->u64[1] = src->u64[1] ^ round_key->u64[1]; in addkey()
68 const av_aes_block *round_key) in addkey_s() argument
70 dst->u64[0] = AV_RN64(src) ^ round_key->u64[0]; in addkey_s()
71 dst->u64[1] = AV_RN64(src + 8) ^ round_key->u64[1]; in addkey_s()
75 const av_aes_block *round_key) in addkey_d() argument
77 AV_WN64(dst, src->u64[0] ^ round_key->u64[0]); in addkey_d()
78 AV_WN64(dst + 8, src->u64[1] ^ round_key->u64[1]); in addkey_d()
129 addkey(&a->state[1], &a->state[0], &a->round_key[r]); in aes_crypt()
[all …]
Daes_internal.h37 DECLARE_ALIGNED(16, av_aes_block, round_key)[15];
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
Dranden_slow.cc253 AesRound(const Vector128& state, const Vector128& round_key) { in AesRound() argument
256 result.s[0] = round_key.s[0] ^ // in AesRound()
261 result.s[1] = round_key.s[1] ^ // in AesRound()
266 result.s[2] = round_key.s[2] ^ // in AesRound()
271 result.s[3] = round_key.s[3] ^ // in AesRound()
277 result.s[0] = round_key.s[0] ^ // in AesRound()
282 result.s[1] = round_key.s[1] ^ // in AesRound()
287 result.s[2] = round_key.s[2] ^ // in AesRound()
292 result.s[3] = round_key.s[3] ^ // in AesRound()
Dranden_hwaes.cc150 const Vector128& round_key) { in AesRound() argument
151 return Vector128(__builtin_crypto_vcipher(state, round_key)); in AesRound()
197 const Vector128& round_key) { in AesRound() argument
205 return vaesmcq_u8(vaeseq_u8(state, uint8x16_t{})) ^ round_key; in AesRound()
247 const Vector128& round_key) { in AesRound() argument
251 return Vector128(_mm_aesenc_si128(state.data(), round_key.data())); in AesRound()
/third_party/node/deps/v8/src/execution/arm64/
Dpointer-auth-arm64.cc164 uint64_t round_key; in ComputePAC() local
166 round_key = key1 ^ running_mod; in ComputePAC()
167 working_val ^= round_key; in ComputePAC()
177 round_key = modk0 ^ running_mod; in ComputePAC()
178 working_val ^= round_key; in ComputePAC()
199 round_key = key1 ^ running_mod; in ComputePAC()
201 working_val ^= round_key; in ComputePAC()