RetroArch
|
#include <compat/zutil.h>
#include "inftrees.h"
#include "inflate.h"
#include "inffast.h"
#include "inffixed.h"
Macros | |
#define | Z_TREES 6 |
#define | UPDATE(check, buf, len) (state->flags ? crc32(check, buf, len) : adler32(check, buf, len)) |
#define | CRC2(check, word) |
#define | CRC4(check, word) |
#define | LOAD() |
#define | RESTORE() |
#define | INITBITS() |
#define | PULLBYTE() |
#define | NEEDBITS(n) |
#define | BITS(n) ((unsigned)hold & ((1U << (n)) - 1)) |
#define | DROPBITS(n) |
#define | BYTEBITS() |
Functions | |
int | inflateReset2 (z_streamp strm, int windowBits) |
static void | fixedtables (struct inflate_state FAR *state) |
static int | updatewindow (z_streamp strm, const unsigned char FAR *end, unsigned copy) |
static unsigned | syncsearch (unsigned FAR *have, const unsigned char FAR *buf, unsigned len) |
long | inflateMark (z_streamp strm) |
int | inflateResetKeep (z_streamp strm) |
int | inflateUndermine (z_streamp strm, int subvert) |
int | inflateGetDictionary (z_streamp strm, Bytef *dictionary, uInt *dictLength) |
int | inflateReset (z_streamp strm) |
int | inflateInit2_ (z_streamp strm, int windowBits, const char *version, int stream_size) |
int | inflateInit_ (z_streamp strm, const char *version, int stream_size) |
int | inflatePrime (z_streamp strm, int bits, int value) |
static int | updatewindow (z_streamp strm, const Bytef *end, unsigned copy) |
int | inflate (z_streamp strm, int flush) |
int | inflateEnd (z_streamp strm) |
int | inflateSetDictionary (z_streamp strm, const Bytef *dictionary, uInt dictLength) |
int | inflateGetHeader (z_streamp strm, gz_headerp head) |
int | inflateSync (z_streamp strm) |
int | inflateSyncPoint (z_streamp strm) |
int | inflateCopy (z_streamp dest, z_streamp source) |
#define BITS | ( | n | ) | ((unsigned)hold & ((1U << (n)) - 1)) |
#define BYTEBITS | ( | ) |
#define CRC2 | ( | check, | |
word | |||
) |
#define CRC4 | ( | check, | |
word | |||
) |
#define DROPBITS | ( | n | ) |
#define INITBITS | ( | ) |
#define LOAD | ( | ) |
#define NEEDBITS | ( | n | ) |
#define PULLBYTE | ( | ) |
#define RESTORE | ( | ) |
#define UPDATE | ( | check, | |
buf, | |||
len | |||
) | (state->flags ? crc32(check, buf, len) : adler32(check, buf, len)) |
#define Z_TREES 6 |
|
static |
int inflate | ( | z_streamp | strm, |
int | flush | ||
) |
int inflateCopy | ( | z_streamp | dest, |
z_streamp | source | ||
) |
int inflateEnd | ( | z_streamp | strm | ) |
int inflateGetHeader | ( | z_streamp | strm, |
gz_headerp | head | ||
) |
int inflateInit2_ | ( | z_streamp | strm, |
int | windowBits, | ||
const char * | version, | ||
int | stream_size | ||
) |
int inflateInit_ | ( | z_streamp | strm, |
const char * | version, | ||
int | stream_size | ||
) |
long inflateMark | ( | z_streamp | strm | ) |
int inflatePrime | ( | z_streamp | strm, |
int | bits, | ||
int | value | ||
) |
int inflateReset | ( | z_streamp | strm | ) |
int inflateReset2 | ( | z_streamp | strm, |
int | windowBits | ||
) |
int inflateResetKeep | ( | z_streamp | strm | ) |
int inflateSync | ( | z_streamp | strm | ) |
int inflateSyncPoint | ( | z_streamp | strm | ) |
int inflateUndermine | ( | z_streamp | strm, |
int | subvert | ||
) |
|
static |