Symbol: u128
crypto/libressl/crypto/modes/gcm128.c
1079
void (*gcm_gmult_p)(u64 Xi[2],const u128 Htable[16]) = ctx->gmult;
crypto/libressl/crypto/modes/gcm128.c
1081
void (*gcm_ghash_p)(u64 Xi[2],const u128 Htable[16],
crypto/libressl/crypto/modes/gcm128.c
121
static void gcm_init_8bit(u128 Htable[256], u64 H[2])
crypto/libressl/crypto/modes/gcm128.c
124
u128 V;
crypto/libressl/crypto/modes/gcm128.c
1267
void (*gcm_gmult_p)(u64 Xi[2],const u128 Htable[16]) = ctx->gmult;
crypto/libressl/crypto/modes/gcm128.c
1269
void (*gcm_ghash_p)(u64 Xi[2],const u128 Htable[16],
crypto/libressl/crypto/modes/gcm128.c
137
u128 *Hi = Htable+i, H0 = *Hi;
crypto/libressl/crypto/modes/gcm128.c
1385
void (*gcm_gmult_p)(u64 Xi[2],const u128 Htable[16]) = ctx->gmult;
crypto/libressl/crypto/modes/gcm128.c
1387
void (*gcm_ghash_p)(u64 Xi[2],const u128 Htable[16],
crypto/libressl/crypto/modes/gcm128.c
145
static void gcm_gmult_8bit(u64 Xi[2], const u128 Htable[256])
crypto/libressl/crypto/modes/gcm128.c
147
u128 Z = { 0, 0};
crypto/libressl/crypto/modes/gcm128.c
1507
void (*gcm_gmult_p)(u64 Xi[2],const u128 Htable[16]) = ctx->gmult;
crypto/libressl/crypto/modes/gcm128.c
255
static void gcm_init_4bit(u128 Htable[16], u64 H[2])
crypto/libressl/crypto/modes/gcm128.c
257
u128 V;
crypto/libressl/crypto/modes/gcm128.c
274
u128 *Hi = Htable+i;
crypto/libressl/crypto/modes/gcm128.c
333
static void gcm_gmult_4bit(u64 Xi[2], const u128 Htable[16])
crypto/libressl/crypto/modes/gcm128.c
335
u128 Z;
crypto/libressl/crypto/modes/gcm128.c
402
static void gcm_ghash_4bit(u64 Xi[2],const u128 Htable[16],
crypto/libressl/crypto/modes/gcm128.c
405
u128 Z;
crypto/libressl/crypto/modes/gcm128.c
457
u128 Hshr4[16]; /* Htable shifted right by 4 bits */
crypto/libressl/crypto/modes/gcm128.c
564
void gcm_gmult_4bit(u64 Xi[2],const u128 Htable[16]);
crypto/libressl/crypto/modes/gcm128.c
565
void gcm_ghash_4bit(u64 Xi[2],const u128 Htable[16],const u8 *inp,size_t len);
crypto/libressl/crypto/modes/gcm128.c
581
u128 V,Z = { 0,0 };
crypto/libressl/crypto/modes/gcm128.c
650
void gcm_init_clmul(u128 Htable[16],const u64 Xi[2]);
crypto/libressl/crypto/modes/gcm128.c
651
void gcm_gmult_clmul(u64 Xi[2],const u128 Htable[16]);
crypto/libressl/crypto/modes/gcm128.c
652
void gcm_ghash_clmul(u64 Xi[2],const u128 Htable[16],const u8 *inp,size_t len);
crypto/libressl/crypto/modes/gcm128.c
656
void gcm_gmult_4bit_mmx(u64 Xi[2],const u128 Htable[16]);
crypto/libressl/crypto/modes/gcm128.c
657
void gcm_ghash_4bit_mmx(u64 Xi[2],const u128 Htable[16],const u8 *inp,size_t len);
crypto/libressl/crypto/modes/gcm128.c
659
void gcm_gmult_4bit_x86(u64 Xi[2],const u128 Htable[16]);
crypto/libressl/crypto/modes/gcm128.c
660
void gcm_ghash_4bit_x86(u64 Xi[2],const u128 Htable[16],const u8 *inp,size_t len);
crypto/libressl/crypto/modes/gcm128.c
667
void gcm_gmult_neon(u64 Xi[2],const u128 Htable[16]);
crypto/libressl/crypto/modes/gcm128.c
668
void gcm_ghash_neon(u64 Xi[2],const u128 Htable[16],const u8 *inp,size_t len);
crypto/libressl/crypto/modes/gcm128.c
755
void (*gcm_gmult_p)(u64 Xi[2],const u128 Htable[16]) = ctx->gmult;
crypto/libressl/crypto/modes/gcm128.c
836
void (*gcm_gmult_p)(u64 Xi[2],const u128 Htable[16]) = ctx->gmult;
crypto/libressl/crypto/modes/gcm128.c
838
void (*gcm_ghash_p)(u64 Xi[2],const u128 Htable[16],
crypto/libressl/crypto/modes/gcm128.c
897
void (*gcm_gmult_p)(u64 Xi[2],const u128 Htable[16]) = ctx->gmult;
crypto/libressl/crypto/modes/gcm128.c
899
void (*gcm_ghash_p)(u64 Xi[2],const u128 Htable[16],
crypto/libressl/crypto/modes/modes_lcl.h
90
u128 Htable[256];
crypto/libressl/crypto/modes/modes_lcl.h
92
u128 Htable[16];
crypto/libressl/crypto/modes/modes_lcl.h
93
void (*gmult)(u64 Xi[2],const u128 Htable[16]);
crypto/libressl/crypto/modes/modes_lcl.h
94
void (*ghash)(u64 Xi[2],const u128 Htable[16],const u8 *inp,size_t len);