Searched refs:ilen (Results 1 - 25 of 39) sorted by relevance

12

/freebsd-10.0-release/crypto/openssl/crypto/comp/
H A Dc_rle.c8 unsigned int olen, unsigned char *in, unsigned int ilen);
10 unsigned int olen, unsigned char *in, unsigned int ilen);
29 unsigned int olen, unsigned char *in, unsigned int ilen)
33 if (ilen == 0 || olen < (ilen-1))
40 memcpy(out,in,ilen);
41 return(ilen+1);
45 unsigned int olen, unsigned char *in, unsigned int ilen)
49 if (olen < (ilen-1))
58 memcpy(out,in,ilen
28 rle_compress_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
44 rle_expand_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
[all...]
H A Dcomp_lib.c38 unsigned char *in, int ilen)
46 ret=ctx->meth->compress(ctx,out,olen,in,ilen);
49 ctx->compress_in+=ilen;
56 unsigned char *in, int ilen)
65 ret=ctx->meth->expand(ctx,out,olen,in,ilen);
68 ctx->expand_in+=ilen;
37 COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen, unsigned char *in, int ilen) argument
55 COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen, unsigned char *in, int ilen) argument
H A Dcomp.h21 unsigned char *in, unsigned int ilen);
24 unsigned char *in, unsigned int ilen);
45 unsigned char *in, int ilen);
47 unsigned char *in, int ilen);
H A Dc_zlib.c30 unsigned int olen, unsigned char *in, unsigned int ilen);
32 unsigned int olen, unsigned char *in, unsigned int ilen);
54 unsigned int olen, unsigned char *in, unsigned int ilen);
56 unsigned int olen, unsigned char *in, unsigned int ilen);
192 unsigned int olen, unsigned char *in, unsigned int ilen)
203 state->ostream.avail_in = ilen;
206 if (ilen > 0)
212 ilen,olen - state->ostream.avail_out,
213 (ilen != olen - state->ostream.avail_out)?"zlib":"clear");
219 unsigned int olen, unsigned char *in, unsigned int ilen)
191 zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
218 zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) argument
[all...]
/freebsd-10.0-release/crypto/openssh/
H A Drsa.c78 int len, ilen, olen; local
86 ilen = BN_num_bytes(in);
87 inbuf = xmalloc(ilen);
90 if ((len = RSA_public_encrypt(ilen, inbuf, outbuf, key,
98 memset(inbuf, 0, ilen);
107 int len, ilen, olen; local
112 ilen = BN_num_bytes(in);
113 inbuf = xmalloc(ilen);
116 if ((len = RSA_private_decrypt(ilen, inbuf, outbuf, key,
124 memset(inbuf, 0, ilen);
[all...]
/freebsd-10.0-release/contrib/nvi/common/
H A Dseq.h35 size_t ilen; /* Input keys length. */ member in struct:_seq
H A Dseq.c43 size_t ilen,
61 seq_find(sp, &lastqp, NULL, input, ilen, stype, NULL)) != NULL) {
95 if ((qp->input = v_wstrdup(sp, input, ilen)) == NULL) {
99 qp->ilen = ilen;
145 size_t ilen,
152 if (qp->stype == stype && qp->ilen == ilen) {
153 diff = MEMCMP(qp->input, input, ilen);
204 size_t ilen,
38 seq_set( SCR *sp, CHAR_T *name, size_t nlen, CHAR_T *input, size_t ilen, CHAR_T *output, size_t olen, seq_t stype, int flags) argument
142 seq_delete( SCR *sp, CHAR_T *input, size_t ilen, seq_t stype) argument
199 seq_find( SCR *sp, SEQ **lastqp, EVENT *e_input, CHAR_T *c_input, size_t ilen, seq_t stype, int *ispartialp) argument
[all...]
H A Dkey.c698 init_nomap = !e_memcmp(qp->output, &gp->i_event[gp->i_next], qp->ilen);
701 QREM(qp->ilen);
731 if (v_event_push(sp, NULL, qp->output + qp->ilen,
732 qp->olen - qp->ilen, CH_MAPPED))
735 qp->output, qp->ilen, CH_NOMAP | CH_MAPPED))
/freebsd-10.0-release/crypto/openssl/ssl/
H A Dt1_reneg.c150 int ilen; local
159 ilen = *d;
163 if((ilen+1) != len)
171 if(ilen != s->s3->previous_client_finished_len)
187 ilen ? "Non-empty" : "Empty");
237 int ilen; local
250 ilen = *d;
254 if(ilen+1 != len)
262 if(ilen != expected_len)
287 ilen
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/wind/
H A Dtest-ldap.c47 size_t ilen; member in struct:testcase
81 ret = _wind_ldap_case_exact_attribute(t->in, t->ilen, out, &olen);
106 ret = wind_stringprep(t->in, t->ilen, out, &olen,
/freebsd-10.0-release/sys/contrib/ngatm/netnatm/api/
H A Dcc_port.c552 size_t len, ilen = 0; local
571 ilen = sizeof(struct uniapi_call_created);
572 if (len != ilen)
600 ilen = sizeof(struct uniapi_call_destroyed);
601 if (len != ilen)
622 ilen = sizeof(struct uniapi_party_created);
623 if (len != ilen)
637 ilen = sizeof(struct uniapi_party_destroyed);
638 if (len != ilen)
652 ilen
[all...]
/freebsd-10.0-release/usr.sbin/ppp/
H A Ddeflate.c74 int olen, ilen, len, res, flush; local
77 ilen = m_length(mp);
78 log_Printf(LogDEBUG, "DeflateOutput: Proto %02x (%d bytes)\n", *proto, ilen);
151 if (olen >= ilen) {
155 ilen, olen, *proto);
156 ccp->uncompout += ilen;
157 ccp->compout += ilen; /* We measure this stuff too */
177 ccp->uncompout += ilen;
181 ilen, olen, *proto);
204 int ilen, ole local
[all...]
H A Dmppe.c164 int dictinit, ilen, len; local
167 ilen = m_length(mp);
170 log_Printf(LogDEBUG, "MPPE: Output: Proto %02x (%d bytes)\n", *proto, ilen);
173 ccp->compout += ilen;
174 ccp->uncompout += ilen;
217 RC4(&mop->rc4key, ilen, rp, rp);
225 ccp->uncompout += ilen;
246 int dictinit, flushed, ilen, len, n; local
248 ilen = m_length(mp);
250 ccp->compin += ilen;
[all...]
/freebsd-10.0-release/sys/fs/msdosfs/
H A Dmsdosfs_conv.c815 dos2unixchr(u_char *outbuf, const u_char **instr, size_t *ilen, int lower, struct msdosfsmount *pmp) argument
826 ilen, (char **)&outp, &olen, KICONV_LOWER);
829 ilen, (char **)&outp, &olen);
836 (*ilen)--;
841 (*ilen)--;
859 unix2doschr(const u_char **instr, size_t *ilen, struct msdosfsmount *pmp) argument
871 len = *ilen;
874 ilen, &up, &ucslen);
875 unixlen = len - *ilen;
881 (*ilen)
939 size_t ilen, olen, len; local
972 unix2winchr(const u_char **instr, size_t *ilen, int lower, struct msdosfsmount *pmp) argument
[all...]
/freebsd-10.0-release/sys/powerpc/wii/
H A Dwii_ipcreg.h80 uint32_t ilen; member in struct:wiiipc_ipc_msg::__anon10910::__anon10914
/freebsd-10.0-release/lib/libc/db/btree/
H A Dbt_split.c71 * ilen: insert length
79 size_t ilen, u_int32_t argskip)
100 bt_root(t, sp, &l, &r, &skip, ilen) :
101 bt_page(t, sp, &l, &r, &skip, ilen);
109 h->linp[skip] = h->upper -= ilen;
329 * ilen: insert length
335 bt_page(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *skip, size_t ilen) argument
405 tp = bt_psplit(t, h, l, r, skip, ilen);
427 * ilen: insert length
433 bt_root(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *skip, size_t ilen) argument
78 __bt_split(BTREE *t, PAGE *sp, const DBT *key, const DBT *data, int flags, size_t ilen, u_int32_t argskip) argument
589 bt_psplit(BTREE *t, PAGE *h, PAGE *l, PAGE *r, indx_t *pskip, size_t ilen) argument
[all...]
/freebsd-10.0-release/lib/libkiconv/
H A Dxlat16_iconv.c341 my_iconv_char(iconv_t cd, const u_char **ibuf, size_t * ilen, u_char **obuf, argument
352 ir = *ilen;
355 ret = my_iconv(cd, (const char **)&sp, ilen, (char **)&dp, olen);
360 if (*ilen == ir - 1 && (*ibuf)[1] == '\0' && (c1 || c2))
386 *ilen = 1;
/freebsd-10.0-release/sbin/setkey/
H A Dtest-pfkey.c276 u_int s, i, slen, ilen, len; local
282 ilen = sizeof(i);
284 memcpy(buf + slen, &i, ilen);
286 len = sizeof(m_sens) + PFKEY_ALIGN8(slen) + PFKEY_ALIGN8(ilen);
293 m_sens.sadb_sens_integ_len = PFKEY_ALIGN8(ilen);
298 buf, slen + ilen);
/freebsd-10.0-release/crypto/heimdal/kadmin/
H A Drpc.c749 unsigned char *buf, size_t ilen,
769 INSIST(ilen >= 4);
790 if (ilen) {
796 if (ilen < 4) {
797 memcpy(tmp, buf, ilen);
798 slen = krb5_storage_read(sp, tmp + ilen, sizeof(tmp) - ilen);
799 INSIST((size_t)slen == sizeof(tmp) - ilen);
801 ilen = sizeof(tmp);
804 INSIST(ilen >
748 process_stream(krb5_context contextp, unsigned char *buf, size_t ilen, krb5_storage *sp) argument
[all...]
/freebsd-10.0-release/sys/fs/smbfs/
H A Dsmbfs_subr.c157 size_t ilen = *nmlen; local
174 (vcp->vc_tolocal, (const char **)&ibuf, &ilen, &obuf, &olen, copt);
/freebsd-10.0-release/contrib/unbound/validator/
H A Dval_sigcrypt.c654 size_t ilen = d->rr_len[i]-2; /* length left in rdata */ local
666 while(ilen > 0 && jlen > 0 && (dname_num_i > 0 || dname_num_j > 0)) {
677 ilen--;
700 lablen_i = ilen;
713 lablen_i = ilen;
758 if(ilen == 0 && jlen == 0)
760 if(ilen == 0)
765 if((wfi = memcmp(di, dj, (ilen<jlen)?ilen:jlen)) != 0)
767 if(ilen < jle
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dmit_glue.c339 size_t *ilen,
344 ret = krb5_enctype_keybits(context, enctype, ilen);
347 *ilen = (*ilen + 7) / 8;
337 krb5_c_keylengths(krb5_context context, krb5_enctype enctype, size_t *ilen, size_t *keylen) argument
/freebsd-10.0-release/sys/dev/usb/net/
H A Dif_axereg.h269 uint16_t ilen; member in struct:axe_sframe_hdr
294 uint16_t ilen; member in struct:axe_csum_hdr
/freebsd-10.0-release/contrib/gcc/
H A Dc-pragma.c579 size_t ilen = IDENTIFIER_LENGTH (DECL_NAME (decl)); local
581 char *newname = (char *) alloca (plen + ilen + 1);
584 memcpy (newname + plen, id, ilen + 1);
586 return build_string (plen + ilen, newname);
/freebsd-10.0-release/contrib/tcpdump/
H A Dprint-esp.c313 int ilen, rlen; local
331 ilen = strlen(icookie);
337 || ilen!=18
343 init, icookie, ilen, rcookie, rlen);

Completed in 312 milliseconds

12