Home
last modified time | relevance | path

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

/freebsd-14-stable/sys/contrib/zstd/zlibWrapper/
HDgzguts.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())
HDgzcompatibility.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;
HDgzlib.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 …]
HDgzread.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 ?
HDgzwrite.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 ?
/freebsd-14-stable/sys/contrib/zlib/
HDgzguts.h141 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) */
214 #define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > gz_intmax())
HDgzlib.c341 z_off64_t ZEXPORT gzseek64(gzFile file, z_off64_t offset, int whence) { in gzseek64()
343 z_off64_t ret; in gzseek64()
371 ret = LSEEK(state->fd, offset - (z_off64_t)state->x.have, SEEK_CUR); in gzseek64()
397 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ? in gzseek64()
415 z_off64_t ret; in gzseek()
417 ret = gzseek64(file, (z_off64_t)offset, whence); in gzseek()
422 z_off64_t ZEXPORT gztell64(gzFile file) { in gztell64()
438 z_off64_t ret; in gztell()
445 z_off64_t ZEXPORT gzoffset64(gzFile file) { in gzoffset64()
446 z_off64_t offset; in gzoffset64()
[all …]
HDzlib.h1782 ZEXTERN uLong ZEXPORT crc32_combine_gen64 OF((z_off64_t));
1845 z_off64_t pos;
1865 ZEXTERN z_off64_t ZEXPORT gzseek64(gzFile, z_off64_t, int);
1866 ZEXTERN z_off64_t ZEXPORT gztell64(gzFile);
1867 ZEXTERN z_off64_t ZEXPORT gzoffset64(gzFile);
1868 ZEXTERN uLong ZEXPORT adler32_combine64(uLong, uLong, z_off64_t);
1869 ZEXTERN uLong ZEXPORT crc32_combine64(uLong, uLong, z_off64_t);
1870 ZEXTERN uLong ZEXPORT crc32_combine_gen64(z_off64_t);
HDadler32.c43 z_off64_t tmp = a >> 32; \
133 local uLong adler32_combine_(uLong adler1, uLong adler2, z_off64_t len2) { in adler32_combine_()
162 uLong ZEXPORT adler32_combine64(uLong adler1, uLong adler2, z_off64_t len2) { in adler32_combine64()
HDzconf.h539 # define z_off64_t off64_t macro
542 # define z_off64_t __int64 macro
544 # define z_off64_t z_off_t macro
HDcrc32.c176 local z_crc_t x2nmodp(z_off64_t n, unsigned k) { in x2nmodp()
1021 uLong ZEXPORT crc32_combine64(uLong crc1, uLong crc2, z_off64_t len2) { in crc32_combine64()
1030 return crc32_combine64(crc1, crc2, (z_off64_t)len2); in crc32_combine()
1034 uLong ZEXPORT crc32_combine_gen64(z_off64_t len2) { in crc32_combine_gen64()
1043 return crc32_combine_gen64((z_off64_t)len2); in crc32_combine_gen()
HDgzread.c237 local int gz_skip(gz_statep state, z_off64_t len) { in gz_skip()
244 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > len ? in gz_skip()
HDzconf.h.in517 # define z_off64_t off64_t macro
520 # define z_off64_t __int64 macro
522 # define z_off64_t z_off_t macro
HDgzwrite.c144 local int gz_zero(gz_statep state, z_off64_t len) { in gz_zero()
156 n = GT_OFF(state->size) || (z_off64_t)state->size > len ? in gz_zero()
HDChangeLog447 - Move z_off64_t to public interface, use instead of off64_t
545 - Use z_off64_t in gz_zero() and gz_skip() to match state->skip
546 - Avoid comparison problem when sizeof(int) == sizeof(z_off64_t)
636 - Simplify 64-bit file support by introducing z_off64_t type