Searched defs:Xi (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/boringssl/src/crypto/modes/
H A Dinternal.h159 } Yi, EKi, EK0, len, Xi, H; member in struct:gcm128_context
161 /* Relative position of Xi, H and pre-computed Htable is used in some
164 void (*gmult)(uint64_t Xi[2], const u128 Htable[16]);
165 void (*ghash)(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp,
H A Dgcm.c150 static void gcm_gmult_4bit(uint64_t Xi[2], const u128 Htable[16]) { argument
159 nlo = ((const uint8_t *)Xi)[15];
183 nlo = ((const uint8_t *)Xi)[cnt];
202 Xi[0] = BSWAP8(Z.hi);
203 Xi[1] = BSWAP8(Z.lo);
205 uint8_t *p = (uint8_t *)Xi;
217 Xi[0] = Z.hi;
218 Xi[1] = Z.lo;
227 static void gcm_ghash_4bit(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp, argument
239 nlo = ((const uint8_t *)Xi)[1
[all...]
/external/eigen/Eigen/src/Core/products/
H A DSelfadjointMatrixVector.h131 Packet Xi = pload <Packet>(resIt); local
133 Xi = pcj0.pmadd(A0i,ptmp0, pcj0.pmadd(A1i,ptmp1,Xi));
136 pstore(resIt,Xi); resIt += PacketSize;
/external/openssl/crypto/modes/
H A Dmodes_lcl.h102 Yi,EKi,EK0,len,Xi,H; member in struct:gcm128_context
103 /* Relative position of Xi, H and pre-computed Htable is used
109 void (*gmult)(u64 Xi[2],const u128 Htable[16]);
110 void (*ghash)(u64 Xi[2],const u128 Htable[16],const u8 *inp,size_t len);
H A Dgcm128.c145 static void gcm_gmult_8bit(u64 Xi[2], const u128 Htable[256]) argument
148 const u8 *xi = (const u8 *)Xi+15;
221 if ((u8 *)Xi==xi) break;
236 Xi[0] = BSWAP8(Z.hi);
237 Xi[1] = BSWAP8(Z.lo);
239 u8 *p = (u8 *)Xi;
248 Xi[0] = Z.hi;
249 Xi[1] = Z.lo;
252 #define GCM_MUL(ctx,Xi) gcm_gmult_8bit(ctx->Xi
335 gcm_gmult_4bit(u64 Xi[2], const u128 Htable[16]) argument
406 gcm_ghash_4bit(u64 Xi[2],const u128 Htable[16], const u8 *inp,size_t len) argument
585 gcm_gmult_1bit(u64 Xi[2],const u64 H[2]) argument
[all...]

Completed in 693 milliseconds