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

  /external/chromium_org/third_party/zlib/
gzguts.h 66 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, which is signe
    [all...]
gzlib.c 277 z_off64_t ZEXPORT gzseek64(file, offset, whence)
279 z_off64_t offset;
283 z_off64_t ret;
336 n = GT_OFF(state->have) || (z_off64_t)state->have > offset ?
358 z_off64_t ret;
360 ret = gzseek64(file, (z_off64_t)offset, whence);
365 z_off64_t ZEXPORT gztell64(file)
385 z_off64_t ret;
392 z_off64_t ZEXPORT gzoffset64(file)
395 z_off64_t offset
    [all...]
adler32.c 12 local uLong adler32_combine_(uLong adler1, uLong adler2, z_off64_t len2);
134 z_off64_t len2;
166 z_off64_t len2;
zlib.h     [all...]
crc32.c 71 local uLong crc32_combine_(uLong crc1, uLong crc2, z_off64_t len2);
375 z_off64_t len2;
439 z_off64_t len2;
zconf.h 401 # define z_off64_t off64_t macro
403 # define z_off64_t z_off_t macro
gzread.c 15 local int gz_skip OF((gz_statep, z_off64_t));
332 z_off64_t len;
340 n = GT_OFF(state->have) || (z_off64_t)state->have > len ?
gzwrite.c 11 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 ?
  /external/zlib/src/
gzguts.h 133 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
134 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
135 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
178 z_off64_t start; /* where the gzip data started, for rewinding */
185 z_off64_t skip; /* amount to skip (already rewound if backwards) */
201 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
202 value -- needed when comparing unsigned to z_off64_t, which is signed
203 (possible z_off64_t types off_t, off64_t, and long are all signed) */
205 # 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 362 z_off64_t ZEXPORT gzseek64(file, offset, whence)
364 z_off64_t offset;
368 z_off64_t ret;
422 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ?
444 z_off64_t ret;
446 ret = gzseek64(file, (z_off64_t)offset, whence);
451 z_off64_t ZEXPORT gztell64(file)
471 z_off64_t ret;
478 z_off64_t ZEXPORT gzoffset64(file)
481 z_off64_t offset
    [all...]
zlib.h     [all...]
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;
zconf.h 485 # define z_off64_t off64_t macro
488 # define z_off64_t __int64 macro
490 # define z_off64_t z_off_t macro
gzread.c 14 local int gz_skip OF((gz_statep, z_off64_t));
258 z_off64_t len;
266 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > len ?
zconf.h.cmakein 487 # define z_off64_t off64_t
490 # define z_off64_t __int64
492 # define z_off64_t z_off_t
zconf.h.in 485 # define z_off64_t off64_t
488 # define z_off64_t __int64
490 # 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 474 milliseconds