Searched refs:inl (Results 1 - 25 of 304) sorted by path

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A DMakefile.b3248 CC_FLAGS = -5 -O2 -tWM -w -w-aus -w-ccc -w-dup -w-prc -w-pro -w-rch -w-sig -w-spa -w-inl -w-pia -w-pin -Dinline=__inline
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A DMakefile.b3244 CC_FLAGS = -5 -O2 -tWM -w -w-aus -w-ccc -w-dup -w-prc -w-pro -w-rch -w-sig -w-spa -w-inl -w-pia -w-pin -Dinline=__inline
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/apps/
H A Denc.c111 int ret=1,inl; local
626 inl=BIO_read(rbio,(char *)buff,bsize);
627 if (inl <= 0) break;
628 if (BIO_write(wbio,(char *)buff,inl) != inl)
H A Ds_server.c333 static int ebcdic_write(BIO *b, const char *in, int inl);
401 static int ebcdic_write(BIO *b, const char *in, int inl) argument
408 if ((in == NULL) || (inl <= 0)) return(0);
413 if (inl > (num = wbuf->alloced))
416 if (num < inl)
417 num = inl;
427 ebcdic2ascii(wbuf->buff, in, inl);
429 ret=BIO_write(b->next_bio, wbuf->buff, inl);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/asn1/
H A Da_sign.c135 int i,inl=0,outl=0,outll=0; local
173 inl=i2d(data,NULL);
174 buf_in=(unsigned char *)OPENSSL_malloc((unsigned int)inl);
187 EVP_SignUpdate(&ctx,(unsigned char *)buf_in,inl);
207 { OPENSSL_cleanse((char *)buf_in,(unsigned int)inl); OPENSSL_free(buf_in); }
221 int i,inl=0,outl=0,outll=0; local
259 inl=ASN1_item_i2d(asn,&buf_in, it);
270 EVP_SignUpdate(&ctx,(unsigned char *)buf_in,inl);
290 { OPENSSL_cleanse((char *)buf_in,(unsigned int)inl); OPENSSL_free(buf_in); }
H A Da_verify.c82 int ret= -1,i,inl; local
93 inl=i2d(data,NULL);
94 buf_in=OPENSSL_malloc((unsigned int)inl);
104 EVP_VerifyUpdate(&ctx,(unsigned char *)buf_in,inl);
106 OPENSSL_cleanse(buf_in,(unsigned int)inl);
134 int ret= -1,i,inl; local
152 inl = ASN1_item_i2d(asn, &buf_in, it);
160 EVP_VerifyUpdate(&ctx,(unsigned char *)buf_in,inl);
162 OPENSSL_cleanse(buf_in,(unsigned int)inl);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/bio/
H A Dbf_buff.c197 static int buffer_write(BIO *b, const char *in, int inl) argument
202 if ((in == NULL) || (inl <= 0)) return(0);
210 if (i >= inl)
212 memcpy(&(ctx->obuf[ctx->obuf_len]),in,inl);
213 ctx->obuf_len+=inl;
214 return(num+inl);
224 inl-=i;
249 /* we now have inl bytes to write */
250 while (inl >= ctx->obuf_size)
252 i=BIO_write(b->next_bio,in,inl);
[all...]
H A Dbf_lbuf.c148 static int linebuffer_write(BIO *b, const char *in, int inl) argument
153 if ((in == NULL) || (inl <= 0)) return(0);
163 for(p = in; p < in + inl && *p != '\n'; p++)
188 inl -= p - in;
197 inl -= i;
250 inl-=i;
253 while(foundnl && inl > 0);
257 if (inl > 0)
259 memcpy(&(ctx->obuf[ctx->obuf_len]), in, inl);
260 ctx->obuf_len += inl;
[all...]
H A Dbf_nbio.c161 static int nbiof_write(BIO *b, const char *in, int inl) argument
168 if ((in == NULL) || (inl <= 0)) return(0);
186 if (inl > num) inl=num;
196 ret=BIO_write(b->next_bio,in,inl);
200 nt->lwn=inl;
H A Dbf_null.c123 static int nullf_write(BIO *b, const char *in, int inl) argument
127 if ((in == NULL) || (inl <= 0)) return(0);
129 ret=BIO_write(b->next_bio,in,inl);
H A Dbio_lib.c176 int BIO_write(BIO *b, const void *in, int inl) argument
192 ((i=(int)cb(b,BIO_CB_WRITE,in,inl,0L,1L)) <= 0))
201 i=b->method->bwrite(b,in,inl);
206 i=(int)cb(b,BIO_CB_WRITE|BIO_CB_RETURN,in,inl,
244 int BIO_gets(BIO *b, char *in, int inl) argument
258 ((i=(int)cb(b,BIO_CB_GETS,in,inl,0L,1L)) <= 0))
267 i=b->method->bgets(b,in,inl);
270 i=(int)cb(b,BIO_CB_GETS|BIO_CB_RETURN,in,inl,
H A Dbss_acpt.c322 static int acpt_write(BIO *b, const char *in, int inl) argument
336 ret=BIO_write(b->next_bio,in,inl);
H A Dbss_conn.c429 static int conn_write(BIO *b, const char *in, int inl) argument
442 ret=writesocket(b->num,in,inl);
H A Dbss_fd.c142 static int fd_write(BIO *b, const char *in, int inl) argument
146 ret=write(b->num,in,inl);
H A Dbss_file.c175 static int MS_CALLBACK file_write(BIO *b, const char *in, int inl) argument
181 if (fwrite(in,(int)inl,1,(FILE *)b->ptr))
182 ret=inl;
183 /* ret=fwrite(in,1,(int)inl,(FILE *)b->ptr); */
185 * out version above can cause 'inl' write calls under
H A Dbss_log.c170 static int MS_CALLBACK slg_write(BIO *b, const char *in, int inl) argument
172 int ret= inl;
206 if((buf= (char *)OPENSSL_malloc(inl+ 1)) == NULL){
209 strncpy(buf, in, inl);
210 buf[inl]= '\0';
H A Dbss_mem.c173 static int mem_write(BIO *b, const char *in, int inl) argument
193 if (BUF_MEM_grow_clean(bm,blen+inl) != (blen+inl))
195 memcpy(&(bm->data[blen]),in,inl);
196 ret=inl;
H A Dbss_null.c109 static int null_write(BIO *b, const char *in, int inl) argument
111 return(inl);
H A Dbss_rtcp.c221 static int rtcp_write(BIO *b, const char *in, int inl) argument
229 for ( i = 0; i < inl; i += segment ) {
230 segment = inl - i;
H A Dbss_sock.c152 static int sock_write(BIO *b, const char *in, int inl) argument
157 ret=writesocket(b->num,in,inl);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/engine/
H A Deng_openssl.c220 const unsigned char *in, unsigned int inl)
225 RC4(&test(ctx)->ks,inl,in,out);
219 test_rc4_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) argument
H A Dhw_cryptodev.c84 const unsigned char *in, unsigned int inl);
374 const unsigned char *in, unsigned int inl)
384 if (!inl)
386 if ((inl % ctx->cipher->block_size) != 0)
393 cryp.len = inl;
403 iiv = (void *) in + inl - ctx->cipher->iv_len;
418 iiv = (void *) out + inl - ctx->cipher->iv_len;
373 cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/evp/
H A Dbio_b64.c365 static int b64_write(BIO *b, const char *in, int inl) argument
367 int ret=inl,n,i;
398 if ((in == NULL) || (inl <= 0)) return(0);
400 while (inl > 0)
402 n=(inl > B64_BLOCK_SIZE)?B64_BLOCK_SIZE:inl;
410 if (n > inl)
411 n=inl;
444 inl-=n;
H A Dbio_enc.c231 static int enc_write(BIO *b, const char *in, int inl) argument
237 ret=inl;
254 if ((in == NULL) || (inl <= 0)) return(0);
257 while (inl > 0)
259 n=(inl > ENC_BLOCK_SIZE)?ENC_BLOCK_SIZE:inl;
263 inl-=n;
274 return (ret == inl) ? i : ret - inl;
H A Dbio_md.c142 static int md_write(BIO *b, const char *in, int inl) argument
147 if ((in == NULL) || (inl <= 0)) return(0);
151 ret=BIO_write(b->next_bio,in,inl);

Completed in 304 milliseconds

1234567891011>>