#include "zlib.h"
Go to the source code of this file.
Macros | |
#define | Assert(cond, msg) |
#define | DEF_MEM_LEVEL 8 |
#define | DEF_WBITS MAX_WBITS |
#define | DYN_TREES 2 |
#define | ERR_MSG(err) z_errmsg[Z_NEED_DICT-(err)] |
#define | ERR_RETURN(strm, err) return (strm->msg = ERR_MSG(err), (err)) |
#define | F_OPEN(name, mode) fopen((name), (mode)) |
#define | local static |
#define | MAX_MATCH 258 |
#define | MIN_MATCH 3 |
#define | OS_CODE 3 /* assume Unix */ |
#define | PRESET_DICT 0x20 /* preset dictionary flag in zlib header */ |
#define | STATIC_TREES 1 |
#define | STORED_BLOCK 0 |
#define | Trace(x) |
#define | Tracec(c, x) |
#define | Tracecv(c, x) |
#define | Tracev(x) |
#define | Tracevv(x) |
#define | TRY_FREE(s, p) {if (p) ZFREE(s, p);} |
#define | ZALLOC(strm, items, size) (*((strm)->zalloc))((strm)->opaque, (items), (size)) |
#define | ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) |
#define | ZLIB_INTERNAL |
#define | ZSWAP32(q) |
Typedefs | |
typedef unsigned char | uch |
typedef uch FAR | uchf |
typedef unsigned long | ulg |
typedef unsigned short | ush |
typedef ush FAR | ushf |
Functions | |
void ZLIB_INTERNAL zmemcpy | OF ((Bytef *dest, const Bytef *source, uInt len)) |
void ZLIB_INTERNAL zmemzero | OF ((Bytef *dest, uInt len)) |
int ZLIB_INTERNAL zmemcmp | OF ((const Bytef *s1, const Bytef *s2, uInt len)) |
ZEXTERN uLong ZEXPORT adler32_combine64 | OF ((uLong, uLong, z_off_t)) |
voidpf ZLIB_INTERNAL zcalloc | OF ((voidpf opaque, unsigned items, unsigned size)) |
void ZLIB_INTERNAL zcfree | OF ((voidpf opaque, voidpf ptr)) |
ZEXTERN uLong ZEXPORT crc32_combine_gen64 | OF ((z_off_t)) |
Variables | |
z_const char *const | z_errmsg [10] |
Definition at line 252 of file zlib/zutil.h.
#define DEF_MEM_LEVEL 8 |
Definition at line 73 of file zlib/zutil.h.
#define DEF_WBITS MAX_WBITS |
Definition at line 68 of file zlib/zutil.h.
#define DYN_TREES 2 |
Definition at line 81 of file zlib/zutil.h.
#define ERR_MSG | ( | err | ) | z_errmsg[Z_NEED_DICT-(err)] |
Definition at line 59 of file zlib/zutil.h.
Definition at line 61 of file zlib/zutil.h.
#define local static |
Definition at line 33 of file zlib/zutil.h.
#define MAX_MATCH 258 |
Definition at line 85 of file zlib/zutil.h.
#define MIN_MATCH 3 |
Definition at line 84 of file zlib/zutil.h.
#define OS_CODE 3 /* assume Unix */ |
Definition at line 202 of file zlib/zutil.h.
#define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */ |
Definition at line 88 of file zlib/zutil.h.
#define STATIC_TREES 1 |
Definition at line 80 of file zlib/zutil.h.
#define STORED_BLOCK 0 |
Definition at line 79 of file zlib/zutil.h.
#define Trace | ( | x | ) |
Definition at line 253 of file zlib/zutil.h.
Definition at line 256 of file zlib/zutil.h.
Definition at line 257 of file zlib/zutil.h.
#define Tracev | ( | x | ) |
Definition at line 254 of file zlib/zutil.h.
#define Tracevv | ( | x | ) |
Definition at line 255 of file zlib/zutil.h.
Definition at line 266 of file zlib/zutil.h.
Definition at line 268 of file zlib/zutil.h.
#define ZLIB_INTERNAL |
Definition at line 19 of file zlib/zutil.h.
#define ZSWAP32 | ( | q | ) |
Definition at line 272 of file zlib/zutil.h.
typedef unsigned char uch |
Definition at line 39 of file zlib/zutil.h.
Definition at line 40 of file zlib/zutil.h.
Definition at line 43 of file zlib/zutil.h.
typedef unsigned short ush |
Definition at line 41 of file zlib/zutil.h.
Definition at line 42 of file zlib/zutil.h.
void ZLIB_INTERNAL zmemzero OF | ( | (Bytef *dest, uInt len) | ) |
void ZLIB_INTERNAL zcfree OF | ( | (voidpf opaque, voidpf ptr) | ) |
ZEXTERN uLong ZEXPORT crc32_combine_gen64 OF | ( | (z_off_t) | ) |
Definition at line 13 of file bloaty/third_party/zlib/zutil.c.