Go to the source code of this file.
|
#define | ZLIB_INTERNAL |
|
#define | local static |
|
#define | ERR_MSG(err) |
|
#define | ERR_RETURN(strm, err) |
|
#define | DEF_WBITS MAX_WBITS |
|
#define | DEF_MEM_LEVEL 8 |
|
#define | STORED_BLOCK 0 |
|
#define | STATIC_TREES 1 |
|
#define | DYN_TREES 2 |
|
#define | MIN_MATCH 3 |
|
#define | MAX_MATCH 258 |
|
#define | PRESET_DICT 0x20 /* preset dictionary flag in zlib header */ |
|
#define | OS_CODE 3 /* assume Unix */ |
|
#define | F_OPEN(name, mode) |
|
#define | zmemcpy(Dst, Src, Size) |
|
#define | zmemcmp(Ptr1, Ptr2, Size) |
|
#define | zmemzero(Dst, Size) |
|
#define | Assert(cond, msg) |
|
#define | Trace(x) |
|
#define | Tracev(x) |
|
#define | Tracevv(x) |
|
#define | Tracec(c, x) |
|
#define | Tracecv(c, x) |
|
#define | ZALLOC(strm, items, size) |
|
#define | ZFREE(strm, addr) |
|
#define | TRY_FREE(s, p) |
|
#define | ZSWAP32(q) |
|
|
ZEXTERN uLong ZEXPORT adler32_combine64 | OF ((uLong, uLong, z_off_t)) |
|
ZEXTERN uLong ZEXPORT crc32_combine_gen64 | OF ((z_off_t)) |
|
void ZLIB_INTERNAL zmemcpy | OF ((Bytef *dest, const Bytef *source, uInt len)) |
|
int ZLIB_INTERNAL zmemcmp | OF ((const Bytef *s1, const Bytef *s2, uInt len)) |
|
void ZLIB_INTERNAL zmemzero | OF ((Bytef *dest, uInt len)) |
|
voidpf ZLIB_INTERNAL zcalloc | OF ((voidpf opaque, unsigned items, unsigned size)) |
|
void ZLIB_INTERNAL zcfree | OF ((voidpf opaque, voidpf ptr)) |
|
◆ Assert
#define Assert |
( |
| cond, |
|
|
| msg ) |
◆ DEF_MEM_LEVEL
◆ DEF_WBITS
◆ DYN_TREES
◆ ERR_MSG
Value:
z_const char *const z_errmsg[10]
Definition at line 59 of file zutil.h.
◆ ERR_RETURN
#define ERR_RETURN |
( |
| strm, |
|
|
| err ) |
Value: return (strm->msg =
ERR_MSG(err), (err))
Definition at line 61 of file zutil.h.
◆ F_OPEN
#define F_OPEN |
( |
| name, |
|
|
| mode ) |
◆ local
◆ MAX_MATCH
◆ MIN_MATCH
◆ OS_CODE
#define OS_CODE 3 /* assume Unix */ |
◆ PRESET_DICT
#define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */ |
◆ STATIC_TREES
◆ STORED_BLOCK
◆ Trace
◆ Tracec
◆ Tracecv
◆ Tracev
◆ Tracevv
◆ TRY_FREE
#define TRY_FREE |
( |
| s, |
|
|
| p ) |
Value:
#define ZFREE(strm, addr)
Definition at line 273 of file zutil.h.
◆ ZALLOC
#define ZALLOC |
( |
| strm, |
|
|
| items, |
|
|
| size ) |
Value: (*((strm)->zalloc))((strm)->opaque, (items), (
size))
Definition at line 270 of file zutil.h.
◆ ZFREE
#define ZFREE |
( |
| strm, |
|
|
| addr ) |
Value:(*((strm)->zfree))((strm)->opaque, (
voidpf)(addr))
Definition at line 272 of file zutil.h.
◆ ZLIB_INTERNAL
◆ zmemcmp
#define zmemcmp |
( |
| Ptr1, |
|
|
| Ptr2, |
|
|
| Size ) |
Value:
DMG_SIZE_DEVICE_PATH Size
INTN EFIAPI CompareMem(IN CONST VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length)
Definition at line 241 of file zutil.h.
◆ zmemcpy
#define zmemcpy |
( |
| Dst, |
|
|
| Src, |
|
|
| Size ) |
Value:
VOID *EFIAPI CopyMem(OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length)
Definition at line 240 of file zutil.h.
◆ zmemzero
#define zmemzero |
( |
| Dst, |
|
|
| Size ) |
Value:
VOID *EFIAPI ZeroMem(OUT VOID *Buffer, IN UINTN Length)
Definition at line 242 of file zutil.h.
◆ ZSWAP32
Value: ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \
(((q) & 0xff00) << 8) + (((q) & 0xff) << 24))
Definition at line 276 of file zutil.h.
◆ uch
typedef unsigned char uch |
◆ uchf
◆ ulg
typedef unsigned long ulg |
◆ ush
typedef unsigned short ush |
◆ ushf
◆ OF() [1/7]
◆ OF() [2/7]
◆ OF() [3/7]
◆ OF() [4/7]
◆ OF() [5/7]
◆ OF() [6/7]
◆ OF() [7/7]
◆ z_errmsg