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

1 2 3

  /external/ppp/pppd/plugins/radius/
md5.c 6 void rc_md5_calc (unsigned char *output, unsigned char *input, unsigned int inlen)
11 MD5_Update (&context, input, inlen);
  /external/protobuf/src/google/protobuf/testing/
zcgunzip.cc 60 int inlen; local
62 ok = in.Next(&inptr, &inlen);
66 if (inlen > 0) {
67 int err = write(STDOUT_FILENO, inptr, inlen);
68 assert(err == inlen);
  /external/boringssl/
android_compat_keywrap.c 65 const uint8_t *in, unsigned int inlen) {
68 if ((inlen & 0x7) || (inlen < 8)) return -1;
71 memcpy(out + 8, in, inlen);
78 for (i = 0; i < inlen; i += 8, t++, R += 8) {
91 return inlen + 8;
95 const uint8_t *in, unsigned int inlen) {
98 inlen -= 8;
99 if (inlen & 0x7) return -1;
100 if (inlen < 8) return -1
    [all...]
  /external/opencv3/3rdparty/include/ffmpeg_/libavutil/
lzo.h 54 * @param inlen size of input buffer, number of bytes left are returned here
60 int av_lzo1x_decode(void *out, int *outlen, const void *in, int *inlen);
  /external/wpa_supplicant_8/src/crypto/
sha384_i.h 20 unsigned long inlen);
crypto_internal-rsa.c 73 const u8 *in, size_t inlen,
77 0, in, inlen, out, outlen);
82 const u8 *in, size_t inlen,
86 in, inlen, out, outlen);
91 const u8 *in, size_t inlen,
95 1, in, inlen, out, outlen);
sha256_i.h 22 unsigned long inlen);
sha512_i.h 22 unsigned long inlen);
sha384-internal.c 67 unsigned long inlen)
69 return sha512_process(md, in, inlen);
sha256-internal.c 145 @param inlen The length of the data (octets)
149 unsigned long inlen)
156 while (inlen > 0) {
157 if (md->curlen == 0 && inlen >= SHA256_BLOCK_SIZE) {
162 inlen -= SHA256_BLOCK_SIZE;
164 n = MIN(inlen, (SHA256_BLOCK_SIZE - md->curlen));
168 inlen -= n;
  /external/wpa_supplicant_8/src/tls/
pkcs1.h 16 int use_private, const u8 *in, size_t inlen,
19 const u8 *in, size_t inlen,
pkcs1.c 19 const u8 *in, size_t inlen,
35 if (modlen < 12 || modlen > *outlen || inlen > modlen - 11) {
37 "lengths (modlen=%lu outlen=%lu inlen=%lu)",
40 (unsigned long) inlen);
47 ps_len = modlen - inlen - 3;
75 os_memcpy(pos, in, inlen); /* D */
82 int use_private, const u8 *in, size_t inlen,
89 if (pkcs1_generate_encryption_block(block_type, modlen, in, inlen,
98 const u8 *in, size_t inlen,
104 res = crypto_rsa_exptmod(in, inlen, out, outlen, key, 1)
    [all...]
rsa.h 22 int crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen,
  /external/boringssl/src/include/openssl/
ecdh.h 90 void *(*kdf)(const void *in, size_t inlen,
  /prebuilts/misc/common/swig/include/2.0.11/
cdata.i 22 %typemap(in) (const void *indata, int inlen) = (char *STRING, int LENGTH);
28 %typemap(in) (const void *indata, int inlen) = (char *STRING, int LENGTH);
33 %typemap(in) (const void *indata, int inlen) = (char *STRING, int LENGTH);
81 void memmove(void *data, const void *indata, int inlen);
  /external/curl/lib/
dotdot.c 52 size_t inlen = strlen(input); local
54 size_t clen = inlen; /* the length of the cloned input */
55 char *out = malloc(inlen+1);
  /external/curl/tests/unit/
unit1396.c 39 int inlen; member in struct:test
83 list1[i].in, list1[i].inlen,
98 char *out = curl_easy_escape(hnd, list2[i].in, list2[i].inlen);
  /external/kernel-headers/original/scsi/
scsi_ioctl.h 27 unsigned int inlen; member in struct:scsi_ioctl_command
  /external/libxml2/include/libxml/
encoding.h 90 * @inlen: the length of @in
97 * The value of @inlen after return is the number of octets consumed
102 const unsigned char *in, int *inlen);
110 * @inlen: the length of @in
119 * The value of @inlen after return is the number of octets consumed
124 const unsigned char *in, int *inlen);
229 int *inlen);
235 int *inlen);
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
cdata.swg 21 %typemap(in) (const void *indata, size_t inlen) = (char *STRING, size_t SIZE);
72 void memmove(void *data, const void *indata, size_t inlen);
  /external/libxml2/
encoding.c 163 * @inlen: the length of @in
168 * The value of @inlen after return is the number of octets consumed
174 const unsigned char* in, int *inlen) {
182 inend = in + (*inlen);
192 *inlen = processed - base;
199 *inlen = processed - base;
209 * @inlen: the length of @in
215 * The value of @inlen after return is the number of octets consumed
221 const unsigned char* in, int *inlen) {
230 if ((out == NULL) || (outlen == NULL) || (inlen == NULL)) return(-1)
493 unsigned int c, d, inlen; local
731 unsigned int c, d, inlen; local
    [all...]
  /external/squashfs-tools/squashfs-tools/
lzma_wrapper.c 86 size_t outlen, inlen = size - LZMA_HEADER_SIZE; local
99 res = LzmaUncompress(dest, &outlen, src + LZMA_HEADER_SIZE, &inlen, src,
  /external/boringssl/src/crypto/asn1/
tasn_utl.c 154 int asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen,
165 enc->enc = OPENSSL_malloc(inlen);
169 memcpy(enc->enc, in, inlen);
170 enc->len = inlen;
  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
aacenc_core.h 70 int inlen; member in struct:__anon28041
  /prebuilts/misc/common/swig/include/2.0.11/go/
cdata.i 64 void memmove(void *data, char *indata, int inlen);

Completed in 837 milliseconds

1 2 3