Home
last modified time | relevance | path

Searched refs:z_off64_t (Results 1 – 15 of 15) sorted by relevance

/f-stack/freebsd/contrib/zlib/
H A Dgzguts.h142 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
143 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
144 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
187 z_off64_t start; /* where the gzip data started, for rewinding */
194 z_off64_t skip; /* amount to skip (already rewound if backwards) */
214 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > INT_MAX)
217 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > gz_intmax())
H A Dgzlib.c369 z_off64_t ZEXPORT gzseek64(file, offset, whence) in gzseek64()
371 z_off64_t offset;
375 z_off64_t ret;
429 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ?
451 z_off64_t ret;
453 ret = gzseek64(file, (z_off64_t)offset, whence);
458 z_off64_t ZEXPORT gztell64(file) in gztell64()
478 z_off64_t ret;
485 z_off64_t ZEXPORT gzoffset64(file) in gzoffset64()
488 z_off64_t offset;
[all …]
H A Dadler32.c10 local uLong adler32_combine_ OF((uLong adler1, uLong adler2, z_off64_t len2));
45 z_off64_t tmp = a >> 32; \
146 z_off64_t len2;
183 z_off64_t len2;
H A Dzlib.h1824 z_off64_t pos;
1844 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
1845 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
1846 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
1847 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t));
1848 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t));
H A Dcrc32.c51 local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
375 z_off64_t len2;
439 z_off64_t len2;
H A Dzconf.h525 # define z_off64_t off64_t macro
528 # define z_off64_t __int64 macro
530 # define z_off64_t z_off_t macro
H A Dgzread.c17 local int gz_skip OF((gz_statep, z_off64_t));
264 z_off64_t len;
272 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > len ?
H A Dgzwrite.c14 local int gz_zero OF((gz_statep, z_off64_t));
150 z_off64_t len;
163 n = GT_OFF(state->size) || (z_off64_t)state->size > len ?
H A Dzconf.h.in508 # define z_off64_t off64_t macro
511 # define z_off64_t __int64 macro
513 # define z_off64_t z_off_t macro
H A DChangeLog344 - Move z_off64_t to public interface, use instead of off64_t
442 - Use z_off64_t in gz_zero() and gz_skip() to match state->skip
443 - Avoid comparison problem when sizeof(int) == sizeof(z_off64_t)
533 - Simplify 64-bit file support by introducing z_off64_t type
/f-stack/freebsd/contrib/zstd/zlibWrapper/
H A Dgzguts.h149 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
150 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
151 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
194 z_off64_t start; /* where the gzip data started, for rewinding */
201 z_off64_t skip; /* amount to skip (already rewound if backwards) */
225 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > INT_MAX)
228 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > gz_intmax())
H A Dgzcompatibility.h20 # define z_off64_t off64_t macro
23 # define z_off64_t __int64 macro
25 # define z_off64_t z_off_t macro
35 z_off64_t pos;
H A Dgzlib.c369 z_off64_t ZEXPORT gzseek64(file, offset, whence) in gzseek64()
371 z_off64_t offset;
375 z_off64_t ret;
429 n = GT_OFF(state.state->x.have) || (z_off64_t)state.state->x.have > offset ?
451 z_off64_t ret;
453 ret = gzseek64(file, (z_off64_t)offset, whence);
458 z_off64_t ZEXPORT gztell64(file) in gztell64()
478 z_off64_t ret;
485 z_off64_t ZEXPORT gzoffset64(file) in gzoffset64()
488 z_off64_t offset;
[all …]
H A Dgzread.c25 local int gz_skip OF((gz_statep, z_off64_t));
273 z_off64_t len;
281 n = GT_OFF(state.state->x.have) || (z_off64_t)state.state->x.have > len ?
H A Dgzwrite.c16 local int gz_zero OF((gz_statep, z_off64_t));
152 z_off64_t len;
165 n = GT_OFF(state.state->size) || (z_off64_t)state.state->size > len ?