Searched refs:next_in (Results 1 – 16 of 16) sorted by relevance
/linux-2.4.37.9/fs/cramfs/ |
D | uncompress.c | 31 stream.next_in = src; in cramfs_uncompress_block() 63 stream.next_in = NULL; in cramfs_uncompress_init()
|
/linux-2.4.37.9/lib/zlib_inflate/ |
D | infutil.h | 71 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;} 76 #define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
|
D | inflate.c | 114 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++) 123 if (z == Z_NULL || z->state == Z_NULL || z->next_in == Z_NULL) 266 p = z->next_in; 283 z->total_in += p - z->next_in; 284 z->next_in = p;
|
/linux-2.4.37.9/crypto/ |
D | deflate.c | 144 stream->next_in = (u8 *)src; in deflate_compress() 180 stream->next_in = (u8 *)src; in deflate_decompress() 193 stream->next_in = &zerostuff; in deflate_decompress()
|
/linux-2.4.37.9/drivers/net/ |
D | ppp_deflate.c | 122 state->strm.next_in = NULL; 217 state->strm.next_in = rptr; 418 state->strm.next_in = ibuf + PPP_HDRLEN + DEFLATE_OVHD; 505 state->strm.next_in = ibuf + 3; 508 --state->strm.next_in;
|
/linux-2.4.37.9/fs/jffs2/ |
D | compr_zlib.c | 106 strm.next_in = data_in; in zlib_compress() 162 strm.next_in = data_in; in zlib_decompress()
|
/linux-2.4.37.9/fs/isofs/ |
D | compress.c | 211 stream.next_in = bh->b_data + (cstart & bufmask); in zisofs_readpage() 253 stream.next_in = bh->b_data; in zisofs_readpage()
|
/linux-2.4.37.9/arch/ppc64/boot/ |
D | zlib.h | 167 Bytef *next_in; /* next input byte */ member
|
D | zlib.c | 411 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++) 420 if (z == Z_NULL || z->next_in == Z_NULL) 557 p = z->next_in; 573 z->total_in += p - z->next_in; 574 z->next_in = p; 654 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;} 659 #define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
|
D | zImage.c | 343 s.next_in = src + i; in gunzip()
|
/linux-2.4.37.9/arch/ppc/boot/include/ |
D | zlib.h | 165 Bytef *next_in; /* next input byte */ member
|
/linux-2.4.37.9/arch/ppc/boot/lib/ |
D | zlib.c | 388 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++) 397 if (z == Z_NULL || z->next_in == Z_NULL) 534 p = z->next_in; 550 z->total_in += p - z->next_in; 551 z->next_in = p; 631 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;} 636 #define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
|
/linux-2.4.37.9/arch/ppc/boot/common/ |
D | ofcommon.c | 116 s.next_in = src + i; in gunzip()
|
D | misc-common.c | 259 s.next_in = src + i; in gunzip()
|
/linux-2.4.37.9/include/linux/ |
D | zlib.h | 69 Bytef *next_in; /* next input byte */ member
|
/linux-2.4.37.9/lib/zlib_deflate/ |
D | deflate.c | 420 if ((strm->next_in == Z_NULL && strm->avail_in != 0) || 639 strm->adler = zlib_adler32(strm->adler, strm->next_in, len); 641 memcpy(buf, strm->next_in, len); 642 strm->next_in += len;
|