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