Lines Matching refs:z_off64_t
133 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
134 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
135 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
178 z_off64_t start; /* where the gzip data started, for rewinding */
185 z_off64_t skip; /* amount to skip (already rewound if backwards) */
201 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
202 value -- needed when comparing unsigned to z_off64_t, which is signed
203 (possible z_off64_t types off_t, off64_t, and long are all signed) */
205 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > INT_MAX)
208 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > gz_intmax())