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

/macosx-10.10/zlib-55/zlib/
H A Dgzguts.h66 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
67 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
68 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
91 z_off64_t pos; /* current position in uncompressed data */
100 z_off64_t start; /* where the gzip data started, for rewinding */
101 z_off64_t raw; /* where the raw data started, for seeking */
108 z_off64_t skip; /* amount to skip (already rewound if backwards) */
124 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
125 value -- needed when comparing unsigned to z_off64_t, whic
[all...]
H A Dgzlib.c275 z_off64_t ZEXPORT gzseek64(file, offset, whence)
277 z_off64_t offset;
281 z_off64_t ret;
334 n = GT_OFF(state->have) || (z_off64_t)state->have > offset ?
356 z_off64_t ret;
358 ret = gzseek64(file, (z_off64_t)offset, whence);
363 z_off64_t ZEXPORT gztell64(file)
383 z_off64_t ret;
390 z_off64_t ZEXPORT gzoffset64(file)
393 z_off64_t offse
[all...]
H A Dzlib.h1581 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
1582 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
1583 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
1584 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t));
1585 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t));
H A Dadler32.c17 local uLong adler32_combine_(uLong adler1, uLong adler2, z_off64_t len2);
141 z_off64_t len2;
173 z_off64_t len2;
H A Dzconf.h400 # define z_off64_t off64_t macro
402 # define z_off64_t off_t macro
404 # define z_off64_t z_off_t macro
H A Dcrc32.c72 local uLong crc32_combine_(uLong crc1, uLong crc2, z_off64_t len2);
377 z_off64_t len2;
441 z_off64_t len2;
H A Dzutil.h164 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t));
165 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t));
H A Dgzread.c15 local int gz_skip OF((gz_statep, z_off64_t));
336 z_off64_t len;
344 n = GT_OFF(state->have) || (z_off64_t)state->have > len ?
H A Dgzwrite.c11 local int gz_zero OF((gz_statep, z_off64_t));
113 z_off64_t len;
126 n = GT_OFF(state->size) || (z_off64_t)state->size > len ?
H A Dzconf.h.cmakein400 # define z_off64_t off64_t
402 # define z_off64_t z_off_t
H A Dzconf.h.in398 # define z_off64_t off64_t
400 # define z_off64_t z_off_t
/macosx-10.10/sudo-73/src/zlib/
H A Dgzguts.h115 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
116 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
117 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
159 z_off64_t start; /* where the gzip data started, for rewinding */
166 z_off64_t skip; /* amount to skip (already rewound if backwards) */
182 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
183 value -- needed when comparing unsigned to z_off64_t, which is signed
184 (possible z_off64_t types off_t, off64_t, and long are all signed) */
186 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t)
[all...]
H A Dadler32.c12 local uLong adler32_combine_ OF((uLong adler1, uLong adler2, z_off64_t len2));
47 z_off64_t tmp = a >> 32; \
139 z_off64_t len2;
176 z_off64_t len2;
H A Dgzlib.c296 z_off64_t ZEXPORT gzseek64(file, offset, whence)
298 z_off64_t offset;
302 z_off64_t ret;
356 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ?
378 z_off64_t ret;
380 ret = gzseek64(file, (z_off64_t)offset, whence);
385 z_off64_t ZEXPORT gztell64(file)
405 z_off64_t ret;
412 z_off64_t ZEXPORT gzoffset64(file)
415 z_off64_t offse
[all...]
H A Dzlib.h1651 z_off64_t pos;
1665 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
1666 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
1667 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
1668 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t));
1669 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t));
H A Dcrc32.c75 local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
380 z_off64_t len2;
444 z_off64_t len2;
H A Dgzread.c14 local int gz_skip OF((gz_statep, z_off64_t));
252 z_off64_t len;
260 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > len ?
H A Dzconf.h.in448 # define z_off64_t off64_t
451 # define z_off64_t __int64
453 # define z_off64_t z_off_t
H A Dgzwrite.c11 local int gz_zero OF((gz_statep, z_off64_t));
135 z_off64_t len;
148 n = GT_OFF(state->size) || (z_off64_t)state->size > len ?
/macosx-10.10/ksh-23/ksh/src/cmd/INIT/
H A Dratz.c181 #define z_off64_t int64_t macro

Completed in 107 milliseconds