/external/dropbear/libtomcrypt/src/pk/katja/ |
katja_exptmod.c | 23 @param inlen The length of the input (octets) 30 int katja_exptmod(const unsigned char *in, unsigned long inlen, 55 if ((err = mp_read_unsigned_bin(tmp, (unsigned char *)in, (int)inlen)) != CRYPT_OK) { goto error; }
|
/external/dropbear/libtomcrypt/src/pk/rsa/ |
rsa_exptmod.c | 23 @param inlen The length of the input (octets) 30 int rsa_exptmod(const unsigned char *in, unsigned long inlen, 55 if ((err = mp_read_unsigned_bin(tmp, (unsigned char *)in, (int)inlen)) != CRYPT_OK) { goto error; }
|
/external/wpa_supplicant_8/src/crypto/ |
crypto_libtomcrypt.c | 487 const u8 *in, size_t inlen, 503 if (modlen < 12 || modlen > *outlen || inlen > modlen - 11) { 505 "lengths (modlen=%lu outlen=%lu inlen=%lu)", 508 (unsigned long) inlen); 515 ps_len = modlen - inlen - 3; 543 os_memcpy(pos, in, inlen); /* D */ 550 const u8 *in, size_t inlen, 558 if (pkcs1_generate_encryption_block(block_type, modlen, in, inlen, 576 const u8 *in, size_t inlen, 579 return crypto_rsa_encrypt_pkcs1(2, &key->rsa, PK_PUBLIC, in, inlen, [all...] |
/external/chromium_org/third_party/opus/src/silk/ |
resampler_down2.c | 40 opus_int32 inLen /* I Number of input samples */ 43 opus_int32 k, len2 = silk_RSHIFT32( inLen, 1 );
|
resampler_private.h | 49 opus_int32 inLen /* I Number of input samples */ 57 opus_int32 inLen /* I Number of input samples */
|
resampler_private_down_FIR.c | 149 opus_int32 inLen /* I Number of input samples */ 169 nSamplesIn = silk_min( inLen, S->batchSize ); 181 inLen -= nSamplesIn; 183 if( inLen > 1 ) {
|
/external/chromium_org/third_party/openssl/openssl/crypto/chacha/ |
chacha_vec.c | 167 size_t inlen, 211 for (iters = 0; iters < inlen/(BPI*64); iters++) 302 for (iters = inlen%(BPI*64)/64; iters != 0; iters--) 315 inlen = inlen % 64; 316 if (inlen) 326 if (inlen >= 16) 329 if (inlen >= 32) 332 if (inlen >= 48) 347 for (i=inlen & ~15; i<inlen; i++ [all...] |
/external/dropbear/libtomcrypt/src/hashes/ |
md2.c | 117 @param inlen The length of the data (octets) 120 int md2_process(hash_state *md, const unsigned char *in, unsigned long inlen) 128 while (inlen > 0) { 129 n = MIN(inlen, (16 - md->md2.curlen)); 133 inlen -= n;
|
/external/dropbear/libtomcrypt/src/prngs/ |
yarrow.c | 131 @param inlen Length of the data to add 135 int yarrow_add_entropy(const unsigned char *in, unsigned long inlen, prng_state *prng) 164 if ((err = hash_descriptor[prng->yarrow.hash].process(&md, in, inlen)) != CRYPT_OK) { 302 @param inlen Size of the state 306 int yarrow_import(const unsigned char *in, unsigned long inlen, prng_state *prng) 315 if (inlen != 64) {
|
/external/chromium_org/third_party/openssl/openssl/crypto/pem/ |
pvkfmt.c | 739 int enctmplen, inlen; local 741 inlen=cb(psbuf,PEM_BUFSIZE,0,u); 743 inlen=PEM_def_callback(psbuf,PEM_BUFSIZE,0,u); 744 if (inlen <= 0) 756 (unsigned char *)psbuf, inlen)) 762 inlen = keylen - 8; 766 if (!EVP_DecryptUpdate(&cctx, q, &enctmplen, p, inlen)) 779 if (!EVP_DecryptUpdate(&cctx, q, &enctmplen, p, inlen)) 898 int enctmplen, inlen; local 900 inlen=cb(psbuf,PEM_BUFSIZE,1,u) [all...] |
/external/openssl/crypto/pem/ |
pvkfmt.c | 739 int enctmplen, inlen; local 741 inlen=cb(psbuf,PEM_BUFSIZE,0,u); 743 inlen=PEM_def_callback(psbuf,PEM_BUFSIZE,0,u); 744 if (inlen <= 0) 756 (unsigned char *)psbuf, inlen)) 762 inlen = keylen - 8; 766 if (!EVP_DecryptUpdate(&cctx, q, &enctmplen, p, inlen)) 779 if (!EVP_DecryptUpdate(&cctx, q, &enctmplen, p, inlen)) 898 int enctmplen, inlen; local 900 inlen=cb(psbuf,PEM_BUFSIZE,1,u) [all...] |
/external/chromium_org/third_party/libxml/src/include/libxml/ |
DOCBparser.h | 48 int *inlen, int quoteChar);
|
/external/chromium_org/third_party/openssl/openssl/crypto/rand/ |
rand_lib.c | 238 static int drbg_rand_add(DRBG_CTX *ctx, const void *in, int inlen, 241 RAND_SSLeay()->add(in, inlen, entropy); 245 static int drbg_rand_seed(DRBG_CTX *ctx, const void *in, int inlen) 247 RAND_SSLeay()->seed(in, inlen);
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/ |
der_encode_sequence_ex.c | 25 @param inlen The number of items in the list 31 int der_encode_sequence_ex(ltc_asn1_list *list, unsigned long inlen, 44 for (i = 0; i < inlen; i++) { 190 for (i = 0; i < inlen; i++) {
|
/external/libxml2/include/libxml/ |
DOCBparser.h | 48 int *inlen, int quoteChar);
|
/external/openssl/crypto/rand/ |
rand_lib.c | 238 static int drbg_rand_add(DRBG_CTX *ctx, const void *in, int inlen, 241 RAND_SSLeay()->add(in, inlen, entropy); 245 static int drbg_rand_seed(DRBG_CTX *ctx, const void *in, int inlen) 247 RAND_SSLeay()->seed(in, inlen);
|
/external/chromium_org/third_party/libxml/patches/ |
icu | 156 + * @inlen: the length of @in 164 + * The value of @inlen after return is the number of octets consumed 170 + const unsigned char *in, int *inlen) { 175 + if ((out == NULL) || (outlen == NULL) || (inlen == NULL) || (in == NULL)) { 190 + &ucv_in, ucv_in + *inlen, NULL, NULL, NULL, NULL, 195 + &ucv_in, ucv_in + *inlen, NULL, NULL, NULL, NULL, 198 + *inlen = ucv_in - (const char*) in;
|
/external/lzma/CPP/7zip/Archive/ |
XzHandler.cpp | 512 SizeT inLen = inSize - inPos;
517 xzu.InBuf + inPos, &inLen,
520 // printf("\n_inPos = %6d inLen = %5d, outLen = %5d", inPos, inLen, outLen);
522 inPos += (UInt32)inLen;
524 lps->InSize += inLen;
527 bool finished = (((inLen == 0) && (outLen == 0)) || res != SZ_OK);
|
/external/ppp/pppd/ |
md5.c | 119 account for the presence of each of the characters inBuf[0..inLen-1] 122 void MD5_Update (mdContext, inBuf, inLen) 125 unsigned int inLen; 135 if ((mdContext->i[0] + ((UINT4)inLen << 3)) < mdContext->i[0]) 137 mdContext->i[0] += ((UINT4)inLen << 3); 138 mdContext->i[1] += ((UINT4)inLen >> 29); 140 while (inLen--) {
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
pkeyutl.c | 84 unsigned char *in, size_t inlen); 543 unsigned char *in, size_t inlen) 549 rv = EVP_PKEY_verify_recover(ctx, out, poutlen, in, inlen); 553 rv = EVP_PKEY_sign(ctx, out, poutlen, in, inlen); 557 rv = EVP_PKEY_encrypt(ctx, out, poutlen, in, inlen); 561 rv = EVP_PKEY_decrypt(ctx, out, poutlen, in, inlen);
|
/external/openssl/apps/ |
pkeyutl.c | 84 unsigned char *in, size_t inlen); 543 unsigned char *in, size_t inlen) 549 rv = EVP_PKEY_verify_recover(ctx, out, poutlen, in, inlen); 553 rv = EVP_PKEY_sign(ctx, out, poutlen, in, inlen); 557 rv = EVP_PKEY_encrypt(ctx, out, poutlen, in, inlen); 561 rv = EVP_PKEY_decrypt(ctx, out, poutlen, in, inlen);
|
/external/chromium_org/third_party/libxml/src/ |
DOCBparser.c | 25 * @inlen: the length of @in 32 * The value of @inlen after return is the number of octets consumed 40 int *inlen ATTRIBUTE_UNUSED,
|
/external/dropbear/libtomcrypt/src/hashes/chc/ |
chc.c | 166 @param inlen The length of the data (octets) 169 int chc_process(hash_state * md, const unsigned char *in, unsigned long inlen) 184 return _chc_process(md, in, inlen);
|
/external/libxml2/ |
DOCBparser.c | 25 * @inlen: the length of @in 32 * The value of @inlen after return is the number of octets consumed 40 int *inlen ATTRIBUTE_UNUSED,
|
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
tasn_utl.c | 165 int asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen, 175 enc->enc = OPENSSL_malloc(inlen); 178 memcpy(enc->enc, in, inlen); 179 enc->len = inlen;
|