1 /* inflate_util.c -- data and routines common to blocks and codes
2 * Copyright (C) 1995-1998 Mark Adler
3 * For conditions of distribution and use, see copyright notice in zlib.h
6 #include <linux/zutil.h>
12 struct inflate_codes_state
;
14 /* And'ing with mask[n] masks the lower n bits */
15 uInt zlib_inflate_mask
[17] = {
17 0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
18 0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
22 /* copy as much as possible from the sliding window to the output area */
23 int zlib_inflate_flush(
24 inflate_blocks_statef
*s
,
33 /* local copies of source and destination pointers */
37 /* compute number of bytes to copy as far as end of window */
38 n
= (uInt
)((q
<= s
->write
? s
->write
: s
->end
) - q
);
39 if (n
> z
->avail_out
) n
= z
->avail_out
;
40 if (n
&& r
== Z_BUF_ERROR
) r
= Z_OK
;
46 /* update check information */
47 if (s
->checkfn
!= NULL
)
48 z
->adler
= s
->check
= (*s
->checkfn
)(s
->check
, q
, n
);
50 /* copy as far as end of window */
55 /* see if more to copy at beginning of window */
60 if (s
->write
== s
->end
)
63 /* compute bytes to copy */
64 n
= (uInt
)(s
->write
- q
);
65 if (n
> z
->avail_out
) n
= z
->avail_out
;
66 if (n
&& r
== Z_BUF_ERROR
) r
= Z_OK
;
72 /* update check information */
73 if (s
->checkfn
!= NULL
)
74 z
->adler
= s
->check
= (*s
->checkfn
)(s
->check
, q
, n
);