Lines Matching refs:AesRound
183 inline ABSL_TARGET_CRYPTO Vector128 AesRound(const Vector128& state, in AesRound() function
246 inline ABSL_TARGET_CRYPTO Vector128 AesRound(const Vector128& state, in AesRound() function
296 inline ABSL_TARGET_CRYPTO Vector128 AesRound(const Vector128& state, in AesRound() function
402 const Vector128 e0 = AesRound(s0, Vector128Load(keys + 0)); in FeistelRound()
403 const Vector128 e2 = AesRound(s2, Vector128Load(keys + 1)); in FeistelRound()
404 const Vector128 e4 = AesRound(s4, Vector128Load(keys + 2)); in FeistelRound()
405 const Vector128 e6 = AesRound(s6, Vector128Load(keys + 3)); in FeistelRound()
406 const Vector128 e8 = AesRound(s8, Vector128Load(keys + 4)); in FeistelRound()
407 const Vector128 e10 = AesRound(s10, Vector128Load(keys + 5)); in FeistelRound()
408 const Vector128 e12 = AesRound(s12, Vector128Load(keys + 6)); in FeistelRound()
409 const Vector128 e14 = AesRound(s14, Vector128Load(keys + 7)); in FeistelRound()
412 const Vector128 o1 = AesRound(e0, s1); in FeistelRound()
413 const Vector128 o3 = AesRound(e2, s3); in FeistelRound()
414 const Vector128 o5 = AesRound(e4, s5); in FeistelRound()
415 const Vector128 o7 = AesRound(e6, s7); in FeistelRound()
416 const Vector128 o9 = AesRound(e8, s9); in FeistelRound()
417 const Vector128 o11 = AesRound(e10, s11); in FeistelRound()
418 const Vector128 o13 = AesRound(e12, s13); in FeistelRound()
419 const Vector128 o15 = AesRound(e14, s15); in FeistelRound()