Home
last modified time | relevance | path

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

12

/third_party/libwebsockets/win32port/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) in gzseek64()
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) in gztell64()
383 z_off64_t ret;
390 z_off64_t ZEXPORT gzoffset64(file) in gzoffset64()
393 z_off64_t offse
[all...]
H A Dadler32.c12 local uLong adler32_combine_(uLong adler1, uLong adler2, z_off64_t len2);
134 z_off64_t len2;
166 z_off64_t len2;
H A Dzlib.h1567 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
1568 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
1569 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
1570 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t));
1571 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t));
H A Dcrc32.c71 local uLong crc32_combine_(uLong crc1, uLong crc2, z_off64_t len2);
373 z_off64_t len2;
437 z_off64_t len2;
/third_party/node/deps/v8/third_party/zlib/
H A Dgzguts.h142 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
143 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
144 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
187 z_off64_t start; /* where the gzip data started, for rewinding */
194 z_off64_t skip; /* amount to skip (already rewound if backwards) */
210 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
211 value -- needed when comparing unsigned to z_off64_t, which is signed
212 (possible z_off64_t types off_t, off64_t, and long are all signed) */
214 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t)
[all...]
H A Dgzlib.c366 z_off64_t ZEXPORT gzseek64(file, offset, whence) in gzseek64()
368 z_off64_t offset;
372 z_off64_t ret;
400 ret = LSEEK(state->fd, offset - (z_off64_t)state->x.have, SEEK_CUR);
426 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ?
448 z_off64_t ret;
450 ret = gzseek64(file, (z_off64_t)offset, whence);
455 z_off64_t ZEXPORT gztell64(file) in gztell64()
475 z_off64_t ret;
482 z_off64_t ZEXPOR
[all...]
H A Dadler32.c10 local uLong adler32_combine_ OF((uLong adler1, uLong adler2, z_off64_t len2));
45 z_off64_t tmp = a >> 32; \
174 z_off64_t len2;
211 z_off64_t len2;
H A Dzlib.h1822 z_off64_t pos;
1847 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
1848 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
1849 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
1850 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t));
1851 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t));
H A Dcrc32.c57 local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
429 z_off64_t len2;
493 z_off64_t len2;
H A Dzconf.h523 # define z_off64_t off64_t macro
526 # define z_off64_t __int64 macro
528 # define z_off64_t z_off_t macro
/third_party/node/deps/zlib/
H A Dgzguts.h141 ZEXTERN z_off64_t ZEXPORT gzseek64(gzFile, z_off64_t, int);
142 ZEXTERN z_off64_t ZEXPORT gztell64(gzFile);
143 ZEXTERN z_off64_t ZEXPORT gzoffset64(gzFile);
186 z_off64_t start; /* where the gzip data started, for rewinding */
194 z_off64_t skip; /* amount to skip (already rewound if backwards) */
210 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
211 value -- needed when comparing unsigned to z_off64_t, which is signed
212 (possible z_off64_t types off_t, off64_t, and long are all signed) */
214 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t)
[all...]
H A Dgzlib.c342 z_off64_t ZEXPORT gzseek64(gzFile file, z_off64_t offset, int whence) { in gzseek64()
344 z_off64_t ret; in gzseek64()
372 ret = LSEEK(state->fd, offset - (z_off64_t)state->x.have, SEEK_CUR); in gzseek64()
398 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ? in gzseek64()
416 z_off64_t ret; in gzseek()
418 ret = gzseek64(file, (z_off64_t)offset, whence); in gzseek()
423 z_off64_t ZEXPORT gztell64(gzFile file) { in gztell64()
439 z_off64_t ret; in gztell()
446 z_off64_t ZEXPOR
[all...]
H A Dzlib.h1839 z_off64_t pos;
1864 ZEXTERN z_off64_t ZEXPORT gzseek64(gzFile, z_off64_t, int);
1865 ZEXTERN z_off64_t ZEXPORT gztell64(gzFile);
1866 ZEXTERN z_off64_t ZEXPORT gzoffset64(gzFile);
1867 ZEXTERN uLong ZEXPORT adler32_combine64(uLong, uLong, z_off64_t);
1868 ZEXTERN uLong ZEXPORT crc32_combine64(uLong, uLong, z_off64_t);
1869 ZEXTERN uLong ZEXPORT crc32_combine_gen64(z_off64_t);
H A Dadler32.c43 z_off64_t tmp = a >> 32; \
161 local uLong adler32_combine_(uLong adler1, uLong adler2, z_off64_t len2) { in adler32_combine_()
190 uLong ZEXPORT adler32_combine64(uLong adler1, uLong adler2, z_off64_t len2) { in adler32_combine64()
H A Dzconf.h540 # define z_off64_t off64_t macro
543 # define z_off64_t __int64 macro
545 # define z_off64_t z_off_t macro
/third_party/skia/third_party/externals/zlib/
H A Dgzguts.h142 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
143 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
144 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
187 z_off64_t start; /* where the gzip data started, for rewinding */
194 z_off64_t skip; /* amount to skip (already rewound if backwards) */
210 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
211 value -- needed when comparing unsigned to z_off64_t, which is signed
212 (possible z_off64_t types off_t, off64_t, and long are all signed) */
214 # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t)
[all...]
H A Dgzlib.c366 z_off64_t ZEXPORT gzseek64(file, offset, whence) in gzseek64()
368 z_off64_t offset;
372 z_off64_t ret;
426 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ?
448 z_off64_t ret;
450 ret = gzseek64(file, (z_off64_t)offset, whence);
455 z_off64_t ZEXPORT gztell64(file) in gztell64()
475 z_off64_t ret;
482 z_off64_t ZEXPORT gzoffset64(file) in gzoffset64()
485 z_off64_t offse
[all...]
H A Dadler32.c10 local uLong adler32_combine_ OF((uLong adler1, uLong adler2, z_off64_t len2));
45 z_off64_t tmp = a >> 32; \
178 z_off64_t len2;
215 z_off64_t len2;
H A Dzlib.h1820 z_off64_t pos;
1845 ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
1846 ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
1847 ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
1848 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t));
1849 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t));
H A Dcrc32.c57 local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
429 z_off64_t len2;
493 z_off64_t len2;
/third_party/zlib/
H A Dgzguts.h141 ZEXTERN z_off64_t ZEXPORT gzseek64(gzFile, z_off64_t, int);
142 ZEXTERN z_off64_t ZEXPORT gztell64(gzFile);
143 ZEXTERN z_off64_t ZEXPORT gzoffset64(gzFile);
186 z_off64_t start; /* where the gzip data started, for rewinding */
194 z_off64_t skip; /* amount to skip (already rewound if backwards) */
210 /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t
211 value -- needed when comparing unsigned to z_off64_t, which is signed
212 (possible z_off64_t types off_t, off64_t, and long are all signed) */
214 #define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t)
[all...]
H A Dgzlib.c347 z_off64_t ZEXPORT gzseek64(gzFile file, z_off64_t offset, int whence) in gzseek64()
350 z_off64_t ret; in gzseek64()
378 ret = LSEEK(state->fd, offset - (z_off64_t)state->x.have, SEEK_CUR); in gzseek64()
404 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ? in gzseek64()
423 z_off64_t ret; in gzseek()
425 ret = gzseek64(file, (z_off64_t)offset, whence); in gzseek()
430 z_off64_t ZEXPORT gztell64(gzFile file) in gztell64()
448 z_off64_t ret; in gztell()
455 z_off64_t ZEXPOR
[all...]
H A Dzlib.h1840 z_off64_t pos;
1860 ZEXTERN z_off64_t ZEXPORT gzseek64(gzFile, z_off64_t, int);
1861 ZEXTERN z_off64_t ZEXPORT gztell64(gzFile);
1862 ZEXTERN z_off64_t ZEXPORT gzoffset64(gzFile);
1863 ZEXTERN uLong ZEXPORT adler32_combine64(uLong, uLong, z_off64_t);
1864 ZEXTERN uLong ZEXPORT crc32_combine64(uLong, uLong, z_off64_t);
1865 ZEXTERN uLong ZEXPORT crc32_combine_gen64(z_off64_t);
H A Dadler32.c43 z_off64_t tmp = a >> 32; \
135 local uLong adler32_combine_(uLong adler1, uLong adler2, z_off64_t len2) in adler32_combine_()
166 uLong ZEXPORT adler32_combine64(uLong adler1, uLong adler2, z_off64_t len2) in adler32_combine64()

Completed in 31 milliseconds

12