Lines Matching full:z_off64_t
118 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
119 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
120 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
162 z_off64_t start; /* where the gzip data started, for rewinding */
169 z_off64_t skip; /* amount to skip (already rewound if backwards) */
185 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
186 value -- needed when comparing unsigned to z_off64_t, which is signed
187 (possible z_off64_t types off_t, off64_t, and long are all signed) */
189 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > INT_MAX)
192 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > gz_intmax())