HomeSort by relevance Sort by last modified time
    Searched defs:inlen (Results 1 - 7 of 7) sorted by null

  /external/openssl/crypto/pkcs12/
p12_decr.c 72 int passlen, unsigned char *in, int inlen, unsigned char **data,
87 if(!(out = OPENSSL_malloc(inlen + EVP_CIPHER_CTX_block_size(&ctx)))) {
92 EVP_CipherUpdate(&ctx, out, &i, in, inlen);
156 int inlen; local
161 inlen = ASN1_item_i2d(obj, &in, it);
166 if (!PKCS12_pbe_crypt(algor, pass, passlen, in, inlen, &oct->data,
172 if (zbuf) OPENSSL_cleanse(in, inlen);
  /external/clearsilver/util/
neo_str.c 812 size_t inlen; local
817 inlen = strlen(in);
827 slashpos = memchr(in, '/', inlen);
829 i = inlen;
844 if ((inlen >= strlen(URL_PROTOCOLS[i])) &&
855 return neos_html_escape(in, inlen, esc);
  /external/dropbear/libtomcrypt/testprof/
der_tests.c 457 unsigned long integer, oidbuf[10], outlen, inlen, x, y; local
492 inlen = outlen;
493 DO(der_decode_sequence(outbuf, inlen, &host[0], 1));
    [all...]
  /external/zlib/contrib/puff/
puff.c 91 unsigned long inlen; /* available input at in */ member in struct:state
118 if (s->incnt == s->inlen) longjmp(s->env, 1); /* out of input */
157 if (s->incnt + 4 > s->inlen) return 2; /* not enough input */
165 if (s->incnt + len > s->inlen) return 2; /* not enough input */
279 if (s->incnt == s->inlen) longjmp(s->env, 1); /* out of input */
    [all...]
  /external/libxml2/
encoding.c 159 * @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) {
178 inend = in + (*inlen);
188 *inlen = processed - base;
195 *inlen = processed - base;
205 * @inlen: the length of @in
211 * The value of @inlen after return is the number of octets consumed
217 const unsigned char* in, int *inlen) {
226 if ((out == NULL) || (outlen == NULL) || (inlen == NULL)) return(-1)
489 unsigned int c, d, inlen; local
727 unsigned int c, d, inlen; local
    [all...]
nanohttp.c 146 int inlen; /* len of the input buffer */ member in struct:xmlNanoHTTPCtxt
516 ctxt->inlen = 65000;
528 if ((ctxt->in + ctxt->inlen) < (ctxt->inptr + XML_NANO_HTTP_CHUNK)) {
534 ctxt->inlen *= 2;
535 ctxt->in = (char *) xmlRealloc(tmp_ptr, ctxt->inlen);
    [all...]
  /prebuilt/common/osgi/
osgi.jar 

Completed in 834 milliseconds