HomeSort by relevance Sort by last modified time
    Searched refs:ivec (Results 1 - 25 of 31) sorted by null

1 2

  /external/boringssl/src/crypto/fipsmodule/modes/
cfb.c 60 const void *key, uint8_t ivec[16], unsigned *num,
64 assert(in && out && key && ivec && num);
70 *(out++) = ivec[n] ^= *(in++);
75 if (((size_t)in | (size_t)out | (size_t)ivec) % sizeof(size_t) != 0) {
78 (*block)(ivec, ivec, key);
80 out[l] = ivec[n] ^= in[l];
89 (*block)(ivec, ivec, key);
91 *(size_t *)(out + n) = *(size_t *)(ivec + n) ^= *(size_t *)(in + n)
    [all...]
ofb.c 60 const void *key, uint8_t ivec[16], unsigned *num,
62 assert(in && out && key && ivec && num);
67 *(out++) = *(in++) ^ ivec[n];
73 (*block)(ivec, ivec, key);
77 OPENSSL_memcpy(&b, ivec + n, sizeof(size_t));
88 (*block)(ivec, ivec, key);
90 out[n] = in[n] ^ ivec[n];
ctr.c 81 * (ivec), and that the application has full control over overflow and the rest
85 const void *key, uint8_t ivec[16],
107 (*block)(ivec, ecount_buf, key);
108 ctr128_inc(ivec);
121 (*block)(ivec, ecount_buf, key);
122 ctr128_inc(ivec);
133 (*block)(ivec, ecount_buf, key);
134 ctr128_inc(ivec);
157 uint8_t ivec[16],
174 ctr32 = GETU32(ivec + 12)
    [all...]
cbc.c 56 const void *key, uint8_t ivec[16],
59 const uint8_t *iv = ivec;
61 assert(key != NULL && ivec != NULL);
65 ((size_t)in | (size_t)out | (size_t)ivec) % sizeof(size_t) != 0) {
106 OPENSSL_memcpy(ivec, iv, 16);
110 const void *key, uint8_t ivec[16],
118 assert(key != NULL && ivec != NULL);
129 const uint8_t *iv = ivec;
132 ((size_t)in | (size_t)out | (size_t)ivec) % sizeof(size_t) != 0) {
157 OPENSSL_memcpy(ivec, iv, 16)
    [all...]
internal.h 167 const void *key, const uint8_t ivec[16]);
173 * call. The counter is a 128-bit, big-endian value in |ivec| and is
176 const void *key, uint8_t ivec[16],
185 const void *key, uint8_t ivec[16],
192 const void *key, const uint8_t *ivec);
278 const void *key, uint8_t ivec[16], int enc);
285 const void *key, uint8_t ivec[16], block128_f block);
292 const void *key, uint8_t ivec[16], block128_f block);
300 * stored in |ivec| and |*num|, the latter must be zero before the initial
303 size_t len, const void *key, uint8_t ivec[16]
    [all...]
  /external/boringssl/src/crypto/fipsmodule/aes/
mode_wrappers.c 57 const AES_KEY *key, uint8_t ivec[AES_BLOCK_SIZE],
59 CRYPTO_ctr128_encrypt(in, out, len, key, ivec, ecount_buf, num,
78 const AES_KEY *key, uint8_t *ivec, const int enc) {
81 CRYPTO_cbc128_encrypt(in, out, len, key, ivec, (block128_f)AES_encrypt);
83 CRYPTO_cbc128_decrypt(in, out, len, key, ivec, (block128_f)AES_decrypt);
89 const AES_KEY *key, uint8_t *ivec, const int enc);
91 const AES_KEY *key, uint8_t *ivec, const int enc) {
92 asm_AES_cbc_encrypt(in, out, len, key, ivec, enc);
98 const AES_KEY *key, uint8_t *ivec, int *num) {
100 CRYPTO_ofb128_encrypt(in, out, length, key, ivec, &num_u
    [all...]
internal.h 53 const AES_KEY *key, uint8_t *ivec, const int enc);
55 const AES_KEY *key, const uint8_t ivec[16]);
84 const AES_KEY *key, uint8_t *ivec, int enc) {
90 const uint8_t ivec[16]) {
  /external/boringssl/src/include/openssl/
des.h 108 DES_cblock *ivec, int enc);
127 DES_cblock *ivec, int enc);
137 DES_cblock *ivec, int enc);
150 DES_cblock *ivec, int *num, int enc);
157 DES_cblock *ivec, int enc);
aes.h 109 * first call and |ivec| will be incremented. */
112 uint8_t ivec[AES_BLOCK_SIZE],
124 const AES_KEY *key, uint8_t *ivec,
132 uint8_t *ivec, int *num);
139 uint8_t *ivec, int *num, int enc);
blowfish.h 85 const BF_KEY *schedule, uint8_t *ivec,
cast.h 90 uint8_t *ivec, int *num, int enc);
  /external/boringssl/src/decrepit/des/
cfb64ede.c 71 DES_cblock *ivec, int *num, int enc) {
78 iv = ivec->bytes;
91 iv = ivec->bytes;
94 iv = ivec->bytes;
113 iv = ivec->bytes;
116 iv = ivec->bytes;
135 DES_cblock *ivec, int enc) {
147 iv = ivec->bytes;
233 iv = ivec->bytes;
  /external/boringssl/src/decrepit/blowfish/
blowfish.c 153 const BF_KEY *schedule, uint8_t *ivec, int encrypt) {
160 n2l(ivec, tout0);
161 n2l(ivec, tout1);
162 ivec -= 8;
188 l2n(tout0, ivec);
189 l2n(tout1, ivec);
191 n2l(ivec, xor0);
192 n2l(ivec, xor1);
193 ivec -= 8;
219 l2n(xor0, ivec);
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
Initialize.cpp 201 TType *ivec = new TType(EbtIVec); local
209 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpLessThan, bvec, "lessThan", ivec, ivec);
212 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpLessThanEqual, bvec, "lessThanEqual", ivec, ivec);
215 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpGreaterThan, bvec, "greaterThan", ivec, ivec);
218 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpGreaterThanEqual, bvec, "greaterThanEqual", ivec, ivec);
221 symbolTable.insertBuiltIn(COMMON_BUILTINS, EOpVectorEqual, bvec, "equal", ivec, ivec)
    [all...]
  /external/boringssl/src/crypto/fipsmodule/aes/asm/
aesni-x86.pl 95 $inout5="xmm7"; $ivec="xmm7";
118 { my ($p,$inout,$ivec)=@_; $inout=$inout0 if (!defined($inout));
123 &xorps ($ivec,$rndkey0) if (defined($ivec));
125 &xorps ($inout,$ivec) if (defined($ivec));
126 &xorps ($inout,$rndkey0) if (!defined($ivec));
648 # const char *ivec,char *cmac);
651 # does not update *ivec! Nor does it finalize CMAC value
667 &movdqu ($ivec,&QWP(0,$rounds_)); # load ive
    [all...]
aesp8-ppc.pl 503 my ($ivec,$inptail,$inpperm,$outhead,$outperm,$outmask,$keyperm)=
521 lvx $ivec,0,$ivp # load [unaligned] iv
525 vperm $ivec,$ivec,$inptail,$inpperm
562 vxor $inout,$inout,$ivec
580 vcipherlast $ivec,$inout,$rndkey0
583 vperm $tmp,$ivec,$ivec,$outperm
630 vxor $inout,$inout,$ivec
631 vmr $ivec,$tm
    [all...]
aes-x86_64.pl     [all...]
  /external/mesa3d/src/compiler/glsl/
lower_instructions.cpp 389 const glsl_type *ivec = glsl_type::get_instance(GLSL_TYPE_INT, vec_elem, 1); local
393 ir_constant *zeroi = ir_constant::zero(ir, ivec);
401 ir_variable *exp = new(ir) ir_variable(ivec, "exp", ir_var_temporary);
407 new(ir) ir_variable(ivec, "extracted_biased_exp", ir_var_temporary);
409 new(ir) ir_variable(ivec, "resulting_biased_exp", ir_var_temporary);
490 const glsl_type *ivec = glsl_type::get_instance(GLSL_TYPE_INT, vec_elem, 1); local
494 ir_constant *zeroi = ir_constant::zero(ir, ivec);
504 ir_variable *exp = new(ir) ir_variable(ivec, "exp", ir_var_temporary);
510 new(ir) ir_variable(ivec, "extracted_biased_exp", ir_var_temporary);
512 new(ir) ir_variable(ivec, "resulting_biased_exp", ir_var_temporary)
    [all...]
  /external/boringssl/src/decrepit/cast/
cast.c 355 const CAST_KEY *schedule, uint8_t *ivec, int *num,
363 iv = ivec;
372 iv = ivec;
377 iv = ivec;
392 iv = ivec;
397 iv = ivec;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_gs_nir.cpp 86 const glsl_type *const type = glsl_type::ivec(instr->num_components);
  /external/boringssl/src/crypto/fipsmodule/des/
des.c 560 const DES_key_schedule *schedule, DES_cblock *ivec,
567 iv = ivec->bytes;
597 iv = ivec->bytes;
628 iv = ivec->bytes;
661 const DES_key_schedule *ks3, DES_cblock *ivec,
668 iv = ivec->bytes;
702 iv = ivec->bytes;
750 iv = ivec->bytes;
761 DES_cblock *ivec,
763 DES_ede3_cbc_encrypt(in, out, len, ks1, ks2, ks1, ivec, enc)
    [all...]
  /external/boringssl/src/crypto/fipsmodule/cipher/
e_aes.c 131 const AES_KEY *key, uint8_t ivec[16], int enc);
133 const AES_KEY *key, const uint8_t ivec[16]);
142 const AES_KEY *key, uint8_t ivec[16], int enc) {
148 const uint8_t ivec[16]) {
163 const AES_KEY *key, uint8_t *ivec, int enc);
186 const AES_KEY *key, uint8_t *ivec, int enc) {
202 const AES_KEY *key, uint8_t *ivec, int enc);
217 const uint8_t *ivec) {
    [all...]
  /external/mesa3d/src/compiler/
glsl_types.h 225 static const glsl_type *ivec(unsigned components);
  /external/toolchain-utils/cros_utils/
stats.py     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fvec.h 16 #include <ivec.h>

Completed in 1331 milliseconds

1 2