Searched refs:z_off64_t (Results 1 - 13 of 13) sorted by relevance

/freebsd-current/sys/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) */
221 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
222 value -- needed when comparing unsigned to z_off64_t, which is signed
223 (possible z_off64_t types off_t, off64_t, and long are all signed) */
225 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t)
[all...]
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)
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)
478 z_off64_t ret;
485 z_off64_t ZEXPORT gzoffset64(file)
488 z_off64_t offse
[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 ?
/freebsd-current/sys/contrib/zlib/
H A Dgzguts.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) */
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)
[all...]
H A Dgzlib.c341 z_off64_t ZEXPORT gzseek64(gzFile file, z_off64_t offset, int whence) {
343 z_off64_t ret;
371 ret = LSEEK(state->fd, offset - (z_off64_t)state->x.have, SEEK_CUR);
397 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ?
415 z_off64_t ret;
417 ret = gzseek64(file, (z_off64_t)offset, whence);
422 z_off64_t ZEXPORT gztell64(gzFile file) {
438 z_off64_t ret;
445 z_off64_t ZEXPOR
[all...]
H A Dadler32.c43 z_off64_t tmp = a >> 32; \
133 local uLong adler32_combine_(uLong adler1, uLong adler2, z_off64_t len2) {
162 uLong ZEXPORT adler32_combine64(uLong adler1, uLong adler2, z_off64_t len2) {
H A Dzlib.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);
H A Dzconf.h539 # define z_off64_t off64_t macro
542 # define z_off64_t __int64 macro
544 # define z_off64_t z_off_t macro
H A Dcrc32.c176 local z_crc_t x2nmodp(z_off64_t n, unsigned k) {
1021 uLong ZEXPORT crc32_combine64(uLong crc1, uLong crc2, z_off64_t len2) {
1030 return crc32_combine64(crc1, crc2, (z_off64_t)len2);
1034 uLong ZEXPORT crc32_combine_gen64(z_off64_t len2) {
1043 return crc32_combine_gen64((z_off64_t)len2);
H A Dgzwrite.c144 local int gz_zero(gz_statep state, z_off64_t len) {
156 n = GT_OFF(state->size) || (z_off64_t)state->size > len ?
H A Dgzread.c237 local int gz_skip(gz_statep state, z_off64_t len) {
244 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > len ?

Completed in 199 milliseconds