Lines Matching +full:0 +full:xff00
47 # if (ULONG_MAX == 0xffffffffffffffff)
49 # elif (ULLONG_MAX == 0xffffffffffffffff)
51 # elif (UINT_MAX == 0xffffffffffffffff)
79 #define STORED_BLOCK 0
88 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
93 # define OS_CODE 0x00
120 # if __TARGET_LIB__ < 0x20000000
122 # elif __TARGET_LIB__ < 0x40000000
172 (!defined(_LARGEFILE64_SOURCE) || _LFS64_LARGEFILE-0 == 0)
207 # define zmemzero(dest, len) _fmemset(dest, 0, len)
211 # define zmemzero(dest, len) memset(dest, 0, len)
225 # define Trace(x) {if (z_verbose>=0) fprintf x ;}
226 # define Tracev(x) {if (z_verbose>0) fprintf x ;}
228 # define Tracec(c,x) {if (z_verbose>0 && (c)) fprintf x ;}
251 #define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \
252 (((q) & 0xff00) << 8) + (((q) & 0xff) << 24))