Home | History | Annotate | Download | only in zlib

Lines Matching refs:z_off64_t

115     ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
116 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
117 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
159 z_off64_t start; /* where the gzip data started, for rewinding */
166 z_off64_t skip; /* amount to skip (already rewound if backwards) */
182 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
183 value -- needed when comparing unsigned to z_off64_t, which is signed
184 (possible z_off64_t types off_t, off64_t, and long are all signed) */
186 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > INT_MAX)
189 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > gz_intmax())