HomeSort by: relevance | last modified time | path
    Searched refs:z_off64_t (Results 1 - 12 of 12) sorted by relevancy

  /src/common/dist/zlib/
gzguts.h 142 ZEXTERN z_off64_t ZEXPORT gzseek64(gzFile, z_off64_t, int);
143 ZEXTERN z_off64_t ZEXPORT gztell64(gzFile);
144 ZEXTERN z_off64_t ZEXPORT gzoffset64(gzFile);
187 z_off64_t start; /* where the gzip data started, for rewinding */
195 z_off64_t skip; /* amount to skip (already rewound if backwards) */
211 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
212 value -- needed when comparing unsigned to z_off64_t, which is signed
213 (possible z_off64_t types off_t, off64_t, and long are all signed) */
215 #define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > gz_intmax()
    [all...]
gzlib.c 339 z_off64_t ZEXPORT gzseek64(gzFile file, z_off64_t offset, int whence) {
341 z_off64_t ret;
369 ret = LSEEK(state->fd, offset - (z_off64_t)state->x.have, SEEK_CUR);
395 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ?
413 z_off64_t ret;
415 ret = gzseek64(file, (z_off64_t)offset, whence);
420 z_off64_t ZEXPORT gztell64(gzFile file) {
436 z_off64_t ret;
443 z_off64_t ZEXPORT gzoffset64(gzFile file)
    [all...]
adler32.c 43 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) {
zlib.h 1844 z_off64_t pos;
1864 ZEXTERN z_off64_t ZEXPORT gzseek64(gzFile, z_off64_t, int);
1865 ZEXTERN z_off64_t ZEXPORT gztell64(gzFile);
1866 ZEXTERN z_off64_t ZEXPORT gzoffset64(gzFile);
1867 ZEXTERN uLong ZEXPORT adler32_combine64(uLong, uLong, z_off64_t);
1868 ZEXTERN uLong ZEXPORT crc32_combine64(uLong, uLong, z_off64_t);
1869 ZEXTERN uLong ZEXPORT crc32_combine_gen64(z_off64_t);
zconf.h 536 # define z_off64_t off64_t macro
539 # define z_off64_t __int64 macro
541 # define z_off64_t z_off_t macro
crc32.c 178 local z_crc_t x2nmodp(z_off64_t n, unsigned k) {
1023 uLong ZEXPORT crc32_combine64(uLong crc1, uLong crc2, z_off64_t len2) {
1032 return crc32_combine64(crc1, crc2, (z_off64_t)len2);
1036 uLong ZEXPORT crc32_combine_gen64(z_off64_t len2) {
1045 return crc32_combine_gen64((z_off64_t)len2);
zconf.h.in 517 # define z_off64_t off64_t macro
520 # define z_off64_t __int64 macro
522 # define z_off64_t z_off_t macro
zconf.h.cmakein 519 # define z_off64_t off64_t
522 # define z_off64_t __int64
524 # define z_off64_t z_off_t
gzread.c 236 local int gz_skip(gz_statep state, z_off64_t len) {
243 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > len ?
gzwrite.c 145 local int gz_zero(gz_statep state, z_off64_t len) {
157 n = GT_OFF(state->size) || (z_off64_t)state->size > len ?
  /src/common/dist/zlib/contrib/minizip/
ioapi.c 190 if(FSEEKO_FUNC((FILE *)stream, (z_off64_t)offset, fseek_origin) != 0)
  /src/common/dist/zlib/os400/
zlib.inc 85 D z_off64_t S 20i 0 Stream offsets
236 D like(z_off64_t)
238 D offset value like(z_off64_t) Offset
255 D like(z_off64_t)
269 D like(z_off64_t)

Completed in 23 milliseconds