Searched defs:Htable (Results 1 - 2 of 2) sorted by relevance

/external/boringssl/src/crypto/fipsmodule/modes/
H A Dinternal.h99 typedef void (*gmult_func)(uint64_t Xi[2], const u128 Htable[16]);
104 typedef void (*ghash_func)(uint64_t Xi[2], const u128 Htable[16],
119 // Note that the order of |Xi|, |H| and |Htable| is fixed by the MOVBE-based,
122 u128 Htable[16]; member in struct:gcm128_context
326 // Note that the order of |S|, |H| and |Htable| is fixed by the MOVBE-based,
330 u128 Htable[16]; member in struct:polyval_ctx
H A Dgcm.c85 static void gcm_init_4bit(u128 Htable[16], uint64_t H[2]) { argument
88 Htable[0].hi = 0;
89 Htable[0].lo = 0;
93 Htable[8] = V;
95 Htable[4] = V;
97 Htable[2] = V;
99 Htable[1] = V;
100 Htable[3].hi = V.hi ^ Htable[2].hi, Htable[
130 gcm_gmult_4bit(uint64_t Xi[2], const u128 Htable[16]) argument
185 gcm_ghash_4bit(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp, size_t len) argument
315 gcm_init_neon(u128 Htable[16], const uint64_t Xi[2]) argument
318 gcm_gmult_neon(uint64_t Xi[2], const u128 Htable[16]) argument
321 gcm_ghash_neon(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp, size_t len) argument
[all...]

Completed in 124 milliseconds