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

1 2

  /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;
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 ?
zconf.h 401 # define z_off64_t off64_t macro
403 # define z_off64_t z_off_t macro
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;
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
gzguts.h 149 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
150 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
151 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
194 z_off64_t start; /* where the gzip data started, for rewinding */
201 z_off64_t skip; /* amount to skip (already rewound if backwards) */
217 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
218 value -- needed when comparing unsigned to z_off64_t, which is signed
219 (possible z_off64_t types off_t, off64_t, and long are all signed) */
221 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > INT_MAX
    [all...]
gzlib.c 362 z_off64_t ZEXPORT gzseek64(
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(
471 z_off64_t ret;
478 z_off64_t ZEXPORT gzoffset64(
481 z_off64_t offset
    [all...]
fx_zlib_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)
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 ?
zconf.h 493 # define z_off64_t off64_t macro
496 # define z_off64_t __int64 macro
498 # define z_off64_t z_off_t macro
  /external/qemu/distrib/zlib-1.2.8/
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...]
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...]
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 485 # define z_off64_t off64_t macro
488 # define z_off64_t __int64 macro
490 # define z_off64_t z_off_t macro
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 ?
  /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...]
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...]
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 485 # define z_off64_t off64_t macro
488 # define z_off64_t __int64 macro
490 # define z_off64_t z_off_t macro
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 ?
  /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)
  /external/pdfium/core/include/thirdparties/zlib/
zconf.h 493 # define z_off64_t off64_t macro
496 # define z_off64_t __int64 macro
498 # define z_off64_t z_off_t macro

Completed in 3643 milliseconds

1 2