Home | History | Annotate | Download | only in zlib

Lines Matching refs:z_off64_t

142     ZEXTERN z_off64_t ZEXPORT gzseek64(gzFile, z_off64_t, int);
143 ZEXTERN z_off64_t ZEXPORT gztell64(gzFile);
144 ZEXTERN z_off64_t ZEXPORT gzoffset64(gzFile);
187 z_off64_t start; /* where the gzip data started, for rewinding */
195 z_off64_t skip; /* amount to skip (already rewound if backwards) */
211 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
212 value -- needed when comparing unsigned to z_off64_t, which is signed
213 (possible z_off64_t types off_t, off64_t, and long are all signed) */
215 #define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > gz_intmax())