Searched refs:next_in (Results 1 - 25 of 103) sorted by relevance

12345

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/lib/
H A Dcontent_encoding.c96 Bytef *orig_in = z->next_in;
154 z->next_in = orig_in;
186 z->next_in = (Bytef *)k->str;
308 z->next_in = (Bytef *)k->str;
339 z->next_in = (Bytef *)k->str + hlen;
353 z->next_in = malloc(z->avail_in);
354 if(z->next_in == NULL) {
357 memcpy(z->next_in, k->str, z->avail_in);
374 unsigned char *oldblock = z->next_in;
377 z->next_in
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/powerpc/boot/
H A Dgunzip_util.c81 state->s.next_in = src + hdrlen;
118 memcpy(dst, state->s.next_in, len);
119 state->s.next_in += len;
202 memcpy(dst, state->s.next_in, len);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/cramfs/
H A Duncompress.c32 stream.next_in = src;
64 stream.next_in = NULL;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/examples/
H A Dfitblk.c83 def->next_in = raw;
114 def->next_in = raw;
184 inf.next_in = Z_NULL;
194 inf.next_in = blk;
209 inf.next_in = tmp;
H A Dgzjoin.c260 strm->next_in = in->next;
303 strm.next_in = Z_NULL;
311 start = strm.next_in;
319 fwrite(start, 1, strm.next_in - start, out);
352 last = strm.next_in[-1] & pos;
354 strm.next_in[-1] &= ~pos;
360 fwrite(start, 1, strm.next_in - start, out);
365 last = strm.next_in[0] & 1;
367 strm.next_in[0] &= ~1;
374 in->next = strm.next_in;
[all...]
H A Dzpipe.c50 strm.next_in = in;
95 strm.next_in = Z_NULL;
109 strm.next_in = in;
H A Dgun.c193 file, read error, or write error (a write error indicated by strm->next_in
277 strm->next_in = outbuf; /* signal write error */
347 strm->next_in = outbuf; /* signal write error */
390 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */
464 strm->next_in = next;
468 next = strm->next_in;
470 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */
599 if (strm->next_in != Z_NULL) {
H A Dgzlog.c305 strm.next_in = in;
309 if (strm.next_in[0] != 0)
311 strm.avail_in = strm.next_in[1] + (strm.next_in[2] << 8);
312 strm.next_in += 5;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/examples/
H A Dfitblk.c83 def->next_in = raw;
114 def->next_in = raw;
184 inf.next_in = Z_NULL;
194 inf.next_in = blk;
209 inf.next_in = tmp;
H A Dgzjoin.c260 strm->next_in = in->next;
303 strm.next_in = Z_NULL;
311 start = strm.next_in;
319 fwrite(start, 1, strm.next_in - start, out);
352 last = strm.next_in[-1] & pos;
354 strm.next_in[-1] &= ~pos;
360 fwrite(start, 1, strm.next_in - start, out);
365 last = strm.next_in[0] & 1;
367 strm.next_in[0] &= ~1;
374 in->next = strm.next_in;
[all...]
H A Dzpipe.c50 strm.next_in = in;
95 strm.next_in = Z_NULL;
109 strm.next_in = in;
H A Dgun.c193 file, read error, or write error (a write error indicated by strm->next_in
277 strm->next_in = outbuf; /* signal write error */
347 strm->next_in = outbuf; /* signal write error */
390 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */
464 strm->next_in = next;
468 next = strm->next_in;
470 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */
599 if (strm->next_in != Z_NULL) {
H A Dgzlog.c305 strm.next_in = in;
309 if (strm.next_in[0] != 0)
311 strm.avail_in = strm.next_in[1] + (strm.next_in[2] << 8);
312 strm.next_in += 5;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/
H A Duncompr.c35 stream.next_in = (Bytef*)source;
H A Dcompress.c32 stream.next_in = (Bytef*)source;
H A Dexample.c184 c_stream.next_in = (Bytef*)hello;
220 d_stream.next_in = compr;
268 c_stream.next_in = uncompr;
279 c_stream.next_in = compr;
286 c_stream.next_in = uncompr;
316 d_stream.next_in = compr;
359 c_stream.next_in = (Bytef*)hello;
395 d_stream.next_in = compr;
448 c_stream.next_in = (Bytef*)hello;
476 d_stream.next_in
[all...]
H A Dgzio.c114 s->stream.next_in = s->inbuf = Z_NULL;
165 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
257 Read a byte from a gz_stream; update next_in and avail_in. Return EOF
273 s->stream.next_in = s->inbuf;
276 return *(s->stream.next_in)++;
301 if (len) s->inbuf[0] = s->stream.next_in[0];
306 s->stream.next_in = s->inbuf;
314 if (s->stream.next_in[0] != gz_magic[0] ||
315 s->stream.next_in[1] != gz_magic[1]) {
320 s->stream.next_in
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/
H A Duncompr.c35 stream.next_in = (Bytef*)source;
H A Dcompress.c32 stream.next_in = (Bytef*)source;
H A Dexample.c184 c_stream.next_in = (Bytef*)hello;
220 d_stream.next_in = compr;
268 c_stream.next_in = uncompr;
279 c_stream.next_in = compr;
286 c_stream.next_in = uncompr;
316 d_stream.next_in = compr;
359 c_stream.next_in = (Bytef*)hello;
395 d_stream.next_in = compr;
448 c_stream.next_in = (Bytef*)hello;
476 d_stream.next_in
[all...]
H A Dgzio.c114 s->stream.next_in = s->inbuf = Z_NULL;
165 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
257 Read a byte from a gz_stream; update next_in and avail_in. Return EOF
273 s->stream.next_in = s->inbuf;
276 return *(s->stream.next_in)++;
301 if (len) s->inbuf[0] = s->stream.next_in[0];
306 s->stream.next_in = s->inbuf;
314 if (s->stream.next_in[0] != gz_magic[0] ||
315 s->stream.next_in[1] != gz_magic[1]) {
320 s->stream.next_in
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/jffs2/
H A Dcompr_zlib.c87 def_strm.next_in = data_in;
147 inf_strm.next_in = data_in;
163 inf_strm.next_in += 2;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/xtensa/boot/lib/
H A Dzmem.c67 s.next_in = src + i;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/
H A Dzlib.h85 Byte *next_in; /* next input byte */ member in struct:z_stream_s
86 uInt avail_in; /* number of bytes available at next_in */
106 The application must update next_in and avail_in when avail_in has
222 - Compress more input starting at next_in and update next_in and avail_in
224 enough room in the output buffer), next_in and avail_in are updated and
285 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
315 next_in, avail_in, and workspace must be initialized before by
316 the caller. If next_in is not NULL and avail_in is large enough (the exact
327 the zlib header if present: this will be done by inflate(). (So next_in an
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/comp/
H A Dc_zlib.c157 state->istream.next_in = Z_NULL;
169 state->ostream.next_in = Z_NULL;
202 state->ostream.next_in = in;
230 state->istream.next_in = in;
311 stream.next_in = (Bytef*)source;

Completed in 144 milliseconds

12345