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

  /external/zlib/
gzguts.h 115 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) && (x) > INT_MAX
    [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;
gzlib.c 296 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 offset
    [all...]
zlib.h     [all...]
zconf.h 440 # define z_off64_t off64_t macro
443 # define z_off64_t __int64 macro
445 # define z_off64_t z_off_t macro
crc32.c 75 local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
380 z_off64_t len2;
444 z_off64_t len2;
gzread.c 14 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 ?
zconf.h.cmakein 442 # define z_off64_t off64_t
445 # define z_off64_t __int64
447 # define z_off64_t z_off_t
zconf.h.in 440 # define z_off64_t off64_t
443 # define z_off64_t __int64
445 # 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 ?

Completed in 2441 milliseconds