Searched refs:inlen (Results 51 - 75 of 127) sorted by relevance

123456

/macosx-10.9.5/ppp-727.90.1/Helpers/pppdump/
H A Ddeflate.c87 static int z_decompress __P((void *state, u_char *cmp, int inlen,
245 z_decompress(arg, mi, inlen, mo, outlenp)
248 int inlen, *outlenp;
278 state->strm.avail_in = mi + inlen - rptr;
H A Dppp-comp.h84 int (*decompress) __P((void *state, u_char *mp, int inlen,
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/include/libxml/
H A DDOCBparser.h48 int *inlen, int quoteChar);
H A DHTMLparser.h137 int *inlen);
142 int *inlen, int quoteChar);
/macosx-10.9.5/remote_cmds-41.90.1/yppush.tproj/
H A Dyppush.c174 push(inlen, indata)
175 int inlen;
188 snprintf(host,sizeof host,"%*.*s" ,inlen ,inlen, indata);
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dutfconv.h170 * This function takes an UTF-8 input string, instr, of inlen bytes
192 utf8_normalizestr(const u_int8_t* instr, size_t inlen, u_int8_t* outstr,
/macosx-10.9.5/Libinfo-449.1.3/rpc.subproj/
H A Dclnt_udp.c322 register int inlen; local
424 inlen = recvfrom(cu->cu_sock, cu->cu_inbuf,
427 } while (inlen < 0 && errno == EINTR);
428 if (inlen < 0) {
435 if (inlen < sizeof(uint32_t))
440 if (inlen < sizeof(u_long))
452 xdrmem_create(&reply_xdrs, cu->cu_inbuf, (u_int)inlen, XDR_DECODE);
H A Dpmap_rmt.c286 int outlen, inlen, nets; local
408 inlen = recvfrom(sock, inbuf, UDPMSGSIZE, 0, (struct sockaddr *)&raddr, &fromlen);
409 if (inlen < 0) {
417 if (inlen < sizeof(uint32_t))
420 if (inlen < sizeof(u_long))
427 xdrmem_create(xdrs, inbuf, (u_int)inlen, XDR_DECODE);
/macosx-10.9.5/SecurityTool-55115/
H A Dkeychain_utilities.c873 unsigned inlen,
887 outTextLen = ((inlen + 2) / 3) * 4;
911 while(inlen) {
912 if(inlen < 3) {
914 if(i < inlen) {
921 encChunk(endbuf, outp, inlen);
922 inlen = 0;
926 inlen -= 3;
932 if((linelen != 0) && (thisLine >= linelen) && inlen) {
872 malloc_enc64_with_lines(const unsigned char *inbuf, unsigned inlen, unsigned linelen, unsigned *outlen) argument
/macosx-10.9.5/OpenSSH-186/osslshim/ossl/
H A Dossl-evp.c964 * @param inlen length of data.
975 void *in, size_t inlen)
988 if ((ctx->buf_len == 0) && ((inlen & ctx->block_mask) == 0)) {
989 ret = (*ctx->cipher->do_cipher)(ctx, out, in, inlen);
991 *outlen = inlen;
1005 if (inlen < left) {
1006 memcpy(ctx->buf + ctx->buf_len, in, inlen);
1007 ctx->buf_len += inlen;
1020 inlen -= left;
1026 if (inlen) {
974 EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, void *out, int *outlen, void *in, size_t inlen) argument
[all...]
/macosx-10.9.5/zlib-53/zlib/contrib/puff/
H A Dpuff.c99 unsigned long inlen; /* available input at in */ member in struct:state
126 if (s->incnt == s->inlen) longjmp(s->env, 1); /* out of input */
165 if (s->incnt + 4 > s->inlen) return 2; /* not enough input */
173 if (s->incnt + len > s->inlen) return 2; /* not enough input */
287 if (s->incnt == s->inlen) longjmp(s->env, 1); /* out of input */
785 s.inlen = *sourcelen;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/crypto/
H A Dapr_crypto.c389 * @param inlen Length of the buffer to read.
395 apr_size_t *outlen, const unsigned char *in, apr_size_t inlen,
398 return ctx->provider->block_encrypt(out, outlen, in, inlen, ctx);
458 * @param inlen Length of the buffer to read.
464 apr_size_t *outlen, const unsigned char *in, apr_size_t inlen,
467 return ctx->provider->block_decrypt(out, outlen, in, inlen, ctx);
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblunicode/ucdata/
H A Ducdata.c936 uccanoncompatdecomp(const ac_uint4 *in, int inlen, argument
943 size = inlen * 2;
949 for (j = 0; j < (unsigned) inlen; j++) {
952 size = inlen + i - j + num - 1;
972 size = inlen + i - j + num - 1;
983 size = inlen + i - j;
1005 uccanondecomp(const ac_uint4 *in, int inlen, argument
1008 return uccanoncompatdecomp(in, inlen, out, outlen, 0, ctx);
1012 uccompatdecomp(const ac_uint4 *in, int inlen, argument
1015 return uccanoncompatdecomp(in, inlen, ou
[all...]
/macosx-10.9.5/remote_cmds-41.90.1/ypbind.tproj/
H A Dypbind.c1110 int inlen; local
1125 inlen = recvfrom(rpcsock, buf, sizeof buf, 0,
1127 if (inlen < 0)
1133 if (inlen < sizeof(u_int32_t)) goto recv_again;
1139 xdrmem_create(&xdr, buf, (u_int)inlen, XDR_DECODE);
1162 int inlen; local
1178 inlen = recvfrom(pingsock, buf, sizeof buf, 0,
1180 if (inlen < 0)
1186 if (inlen < sizeof(u_int32_t)) goto recv_again;
1192 xdrmem_create(&xdr, buf, (u_int)inlen, XDR_DECOD
[all...]
/macosx-10.9.5/smb-697.95.1/kernel/smbfs/
H A Dsmbfs_subr.c358 size_t inlen, outlen, length; local
379 inlen = *nmlen;
381 (void)smb_convert_from_network( &ntwrk_name, &inlen, &dst, &outlen,
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dhttp-support.c718 int inlen) /* I - Size of input string */
742 for (outptr = out, outend = out + outlen - 1; inlen > 0; in ++, inlen --)
753 if (inlen > 1)
760 inlen --;
761 if (inlen <= 0)
772 if (inlen > 1)
779 inlen --;
780 if (inlen <= 0)
715 httpEncode64_2(char *out, int outlen, const char *in, int inlen) argument
/macosx-10.9.5/libxml2-26/libxml2/
H A DDOCBparser.c25 * @inlen: the length of @in
32 * The value of @inlen after return is the number of octets consumed
40 int *inlen ATTRIBUTE_UNUSED,
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/java/CyrusSasl/
H A DGenericClient.java65 int inlen);
63 jni_sasl_client_step(int ptr, byte[] in, int inlen) argument
/macosx-10.9.5/postfix-252/postfix/src/xsasl/
H A Dxsasl_cyrus_client.c114 #define SASL_DECODE64(in, inlen, out, outmaxlen, outlen) \
115 sasl_decode64(in, inlen, out, outlen)
126 #define SASL_DECODE64(in, inlen, out, outmaxlen, outlen) \
127 sasl_decode64(in, inlen, out, outmaxlen, outlen)
H A Dxsasl_cyrus_server.c118 #define SASL_DECODE64(in, inlen, out, outmaxlen, outlen) \
119 sasl_decode64(in, inlen, out, outlen)
135 #define SASL_DECODE64(in, inlen, out, outmaxlen, outlen) \
136 sasl_decode64(in, inlen, out, outmaxlen, outlen)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/
H A DDOCBparser.c25 * @inlen: the length of @in
32 * The value of @inlen after return is the number of octets consumed
40 int *inlen ATTRIBUTE_UNUSED,
/macosx-10.9.5/ppp-727.90.1/Family/
H A Dppp_serial.c190 int16_t inlen; /* length of input packet so far */ member in struct:pppserial
731 ilen = ld->inlen;
732 ld->inlen = 0;
844 if (ld->inlen == 0) {
873 ld->inlen += 2;
877 if (ld->inlen == 1 && c != PPP_UI) {
882 if (ld->inlen == 2 && (c & 1) == 1) {
885 ld->inlen++;
888 if (ld->inlen == 3 && (c & 1) == 0) {
895 if (++ld->inlen > l
[all...]
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/utils/
H A Dtestsuite.c1170 void corrupt(corrupt_type_t type, char *in, int inlen, argument
1180 *outlen = inlen;
1184 if (inlen>0)
1185 in[ (rand() % inlen) ] = (char) (rand() % 256);
1188 *outlen = inlen;
1192 if (inlen>0)
1193 in[ (rand() % inlen) ] = '\0';
1196 *outlen = inlen;
1199 if (inlen>0)
1200 in[ (rand() % inlen) ]
[all...]
/macosx-10.9.5/libxml2-26/libxml2/include/libxml/
H A DHTMLparser.h137 int *inlen);
142 int *inlen, int quoteChar);
/macosx-10.9.5/Security-55471.14.18/include/security_smime/
H A Dcmsencode.c439 CSSM_SIZE inlen; /* length of data being encrypted */ local
443 inlen = len;
444 buflen = SecCmsCipherContextEncryptLength(cinfo->ciphcx, inlen, final);
451 data, inlen, final);
468 data, inlen, final);

Completed in 341 milliseconds

123456