HomeSort by relevance Sort by last modified time
    Searched full:z_off64_t (Results 1 - 12 of 12) sorted by null

  /external/zlib/src/
gzguts.h 118 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
119 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
120 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
162 z_off64_t start; /* where the gzip data started, for rewinding */
169 z_off64_t skip; /* amount to skip (already rewound if backwards) */
185 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
186 value -- needed when comparing unsigned to z_off64_t, which is signed
187 (possible z_off64_t types off_t, off64_t, and long are all signed) */
189 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > INT_MAX
    [all...]
gzlib.c 352 z_off64_t ZEXPORT gzseek64(file, offset, whence)
354 z_off64_t offset;
358 z_off64_t ret;
412 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ?
434 z_off64_t ret;
436 ret = gzseek64(file, (z_off64_t)offset, whence);
441 z_off64_t ZEXPORT gztell64(file)
461 z_off64_t ret;
468 z_off64_t ZEXPORT gzoffset64(file)
471 z_off64_t offset
    [all...]
adler32.c 12 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;
zconf.h 480 # define z_off64_t off64_t macro
483 # define z_off64_t __int64 macro
485 # define z_off64_t z_off_t macro
zconf.h.cmakein 482 # define z_off64_t off64_t
485 # define z_off64_t __int64
487 # define z_off64_t z_off_t
zconf.h.in 480 # define z_off64_t off64_t
483 # define z_off64_t __int64
485 # define z_off64_t z_off_t
gzwrite.c 11 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 ?
crc32.c 53 local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
358 z_off64_t len2;
422 z_off64_t len2;
gzread.c 14 local int gz_skip OF((gz_statep, z_off64_t));
257 z_off64_t len;
265 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > len ?
zlib.h     [all...]
ChangeLog 238 - Move z_off64_t to public interface, use instead of off64_t
336 - Use z_off64_t in gz_zero() and gz_skip() to match state->skip
337 - Avoid comparison problem when sizeof(int) == sizeof(z_off64_t)
427 - Simplify 64-bit file support by introducing z_off64_t type
    [all...]
  /external/zlib/src/as400/
zlib.inc 84 D z_off64_t S 20i 0 Stream offsets
217 D like(z_off64_t)
219 D offset value like(z_off64_t) Offset
236 D like(z_off64_t)
250 D like(z_off64_t)

Completed in 253 milliseconds