Searched refs:sourcelen (Results 1 - 20 of 20) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/contrib/puff/
H A Dpuff.h31 unsigned long *sourcelen); /* amount of input available */
H A Dpuff.c698 * Inflate source to dest. On return, destlen and sourcelen are updated to the
704 * sourcelen are not updated to facilitate retrying from the beginning with the
743 unsigned long *sourcelen) /* amount of input available */
756 s.inlen = *sourcelen;
780 *sourcelen = s.incnt;
820 unsigned long len, sourcelen, destlen; local
825 sourcelen = len;
826 ret = puff(NIL, &destlen, source, &sourcelen);
831 if (sourcelen < len) printf("%lu compressed bytes unused\n",
832 len - sourcelen);
740 puff(unsigned char *dest, unsigned long *destlen, unsigned char *source, unsigned long *sourcelen) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/contrib/puff/
H A Dpuff.h31 unsigned long *sourcelen); /* amount of input available */
H A Dpuff.c698 * Inflate source to dest. On return, destlen and sourcelen are updated to the
704 * sourcelen are not updated to facilitate retrying from the beginning with the
743 unsigned long *sourcelen) /* amount of input available */
756 s.inlen = *sourcelen;
780 *sourcelen = s.incnt;
820 unsigned long len, sourcelen, destlen; local
825 sourcelen = len;
826 ret = puff(NIL, &destlen, source, &sourcelen);
831 if (sourcelen < len) printf("%lu compressed bytes unused\n",
832 len - sourcelen);
740 puff(unsigned char *dest, unsigned long *destlen, unsigned char *source, unsigned long *sourcelen) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/contrib/puff/
H A Dpuff.h35 unsigned long *sourcelen); /* amount of input available */
H A Dpufftest.c95 unsigned long sourcelen, destlen; local
136 sourcelen = (unsigned long)len;
137 ret = puff(NIL, &destlen, source + skip, &sourcelen);
142 if (sourcelen < len) fprintf(stderr, "%lu compressed bytes unused\n",
143 len - sourcelen);
156 puff(dest, &destlen, source + skip, &sourcelen);
H A Dpuff.c750 * Inflate source to dest. On return, destlen and sourcelen are updated to the
756 * sourcelen are not updated to facilitate retrying from the beginning with the
796 unsigned long *sourcelen) /* amount of input available */
809 s.inlen = *sourcelen;
837 *sourcelen = s.incnt;
793 puff(unsigned char *dest, unsigned long *destlen, const unsigned char *source, unsigned long *sourcelen) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/contrib/puff/
H A Dpuff.h35 unsigned long *sourcelen); /* amount of input available */
H A Dpufftest.c95 unsigned long sourcelen, destlen; local
136 sourcelen = (unsigned long)len;
137 ret = puff(NIL, &destlen, source + skip, &sourcelen);
142 if (sourcelen < len) fprintf(stderr, "%lu compressed bytes unused\n",
143 len - sourcelen);
156 puff(dest, &destlen, source + skip, &sourcelen);
H A Dpuff.c747 * Inflate source to dest. On return, destlen and sourcelen are updated to the
753 * sourcelen are not updated to facilitate retrying from the beginning with the
793 unsigned long *sourcelen) /* amount of input available */
806 s.inlen = *sourcelen;
834 *sourcelen = s.incnt;
790 puff(unsigned char *dest, unsigned long *destlen, const unsigned char *source, unsigned long *sourcelen) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/jffs2/
H A Dcompr_rtime.c34 uint32_t *sourcelen, uint32_t *dstlen,
43 while (pos < (*sourcelen) && outpos <= (*dstlen)-2) {
54 while ((backpos < pos) && (pos < (*sourcelen)) &&
68 *sourcelen = pos;
32 jffs2_rtime_compress(unsigned char *data_in, unsigned char *cpage_out, uint32_t *sourcelen, uint32_t *dstlen, void *model) argument
H A Dcompr_lzo.c45 uint32_t *sourcelen, uint32_t *dstlen, void *model)
51 ret = lzo1x_1_compress(data_in, *sourcelen, lzo_compress_buf, &compress_size, lzo_mem);
44 jffs2_lzo_compress(unsigned char *data_in, unsigned char *cpage_out, uint32_t *sourcelen, uint32_t *dstlen, void *model) argument
H A Dcompr_rubin.c266 unsigned char *cpage_out, uint32_t *sourcelen,
277 while (pos < (*sourcelen) && !out_byte(&rs, data_in[pos]))
294 *sourcelen = pos;
300 uint32_t *sourcelen, uint32_t *dstlen,
309 mysrclen = *sourcelen;
358 *sourcelen = mysrclen;
381 uint32_t sourcelen, uint32_t dstlen,
385 cpage_out, sourcelen, dstlen);
391 uint32_t sourcelen, uint32_t dstlen,
400 rubin_do_decompress(256, bits, data_in+8, cpage_out, sourcelen
265 rubin_do_compress(int bit_divider, int *bits, unsigned char *data_in, unsigned char *cpage_out, uint32_t *sourcelen, uint32_t *dstlen) argument
298 jffs2_dynrubin_compress(unsigned char *data_in, unsigned char *cpage_out, uint32_t *sourcelen, uint32_t *dstlen, void *model) argument
379 jffs2_rubinmips_decompress(unsigned char *data_in, unsigned char *cpage_out, uint32_t sourcelen, uint32_t dstlen, void *model) argument
389 jffs2_dynrubin_decompress(unsigned char *data_in, unsigned char *cpage_out, uint32_t sourcelen, uint32_t dstlen, void *model) argument
[all...]
H A Dcompr_zlib.c23 /* Plan: call deflate() with avail_in == *sourcelen,
71 uint32_t *sourcelen, uint32_t *dstlen,
93 while (def_strm.total_out < *dstlen - STREAM_END_SPACE && def_strm.total_in < *sourcelen) {
95 def_strm.avail_in = min((unsigned)(*sourcelen-def_strm.total_in), def_strm.avail_out);
130 *sourcelen = def_strm.total_in;
69 jffs2_zlib_compress(unsigned char *data_in, unsigned char *cpage_out, uint32_t *sourcelen, uint32_t *dstlen, void *model) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dcrypto.c380 const size_t sourcelen = strlen( source ); local
383 if( sourcelen < 2*SHA_DIGEST_LENGTH-1 )
385 saltlen = sourcelen - 2*SHA_DIGEST_LENGTH-1;
H A Dnet.c236 socklen_t sourcelen; local
265 sourcelen = setup_sockaddr( source_addr, 0, &source_sock );
266 if( bind( s, ( struct sockaddr * ) &source_sock, sourcelen ) )
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/as400/
H A Dzlib.inc254 D sourcelen 10U 0 value Compression level
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/as400/
H A Dzlib.inc254 D sourcelen 10U 0 value Compression level
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/as400/
H A Dzlib.inc338 D sourcelen 10U 0 value Compression level
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/as400/
H A Dzlib.inc338 D sourcelen 10U 0 value Compression level

Completed in 116 milliseconds