/src/common/dist/zlib/ |
zlib.h | 1188 7.6: size of z_off_t 1553 ZEXTERN z_off_t ZEXPORT gzseek(gzFile file, 1554 z_off_t offset, int whence); 1580 ZEXTERN z_off_t ZEXPORT gztell(gzFile file); 1591 ZEXTERN z_off_t ZEXPORT gzoffset(gzFile file); 1722 z_off_t len2); 1728 that the z_off_t type (like off_t) is a signed integer. If len2 is 1759 ZEXTERN uLong ZEXPORT crc32_combine(uLong crc1, uLong crc2, z_off_t len2); 1769 ZEXTERN uLong ZEXPORT crc32_combine_gen(z_off_t len2); 1892 ZEXTERN z_off_t ZEXPORT gzseek64(gzFile, z_off_t, int) [all...] |
gzlib.c | 412 z_off_t ZEXPORT gzseek(gzFile file, z_off_t offset, int whence) { 416 return ret == (z_off_t)ret ? (z_off_t)ret : -1; 435 z_off_t ZEXPORT gztell(gzFile file) { 439 return ret == (z_off_t)ret ? (z_off_t)ret : -1; 464 z_off_t ZEXPORT gzoffset(gzFile file) { 468 return ret == (z_off_t)ret ? (z_off_t)ret : -1 [all...] |
zconf.h | 504 # ifndef z_off_t 505 # define z_off_t off_t macro 528 #ifndef z_off_t 529 # define z_off_t long macro 541 # define z_off64_t z_off_t
|
zutil.h | 187 ZEXTERN uLong ZEXPORT adler32_combine64(uLong, uLong, z_off_t); 188 ZEXTERN uLong ZEXPORT crc32_combine64(uLong, uLong, z_off_t); 189 ZEXTERN uLong ZEXPORT crc32_combine_gen64(z_off_t);
|
zconf.h.in | 488 # ifndef z_off_t 489 # define z_off_t off_t macro 512 #ifndef z_off_t 513 # define z_off_t long macro 522 # define z_off64_t z_off_t
|
zconf.h.cmakein | 490 # ifndef z_off_t 491 # define z_off_t off_t 514 #ifndef z_off_t 515 # define z_off_t long 524 # define z_off64_t z_off_t
|
adler32.c | 158 uLong ZEXPORT adler32_combine(uLong adler1, uLong adler2, z_off_t len2) {
|
zutil.c | 55 switch ((int)(sizeof(z_off_t))) {
|
crc32.c | 1031 uLong ZEXPORT crc32_combine(uLong crc1, uLong crc2, z_off_t len2) { 1044 uLong ZEXPORT crc32_combine_gen(z_off_t len2) {
|
/src/sys/net/ |
zlib.h | 287 # define z_off_t off_t macro 294 #ifndef z_off_t 295 # define z_off_t long macro 1067 ZEXTERN z_off_t ZEXPORT gzseek(gzFile, z_off_t, int); 1095 ZEXTERN z_off_t ZEXPORT gztell(gzFile);
|
/src/common/dist/zlib/os400/ |
zlib.inc | 84 D z_off_t S 10i 0 Stream offsets 224 D like(z_off_t) 226 D offset value like(z_off_t) Offset 230 D like(z_off_t) 232 D offset value like(z_off_t) Offset 247 D like(z_off_t) 251 D like(z_off_t) 261 D like(z_off_t) 265 D like(z_off_t)
|
/src/common/dist/zlib/contrib/minizip/ |
unzip.h | 393 extern z_off_t ZEXPORT unztell(unzFile file);
|
unzip.c | 1759 extern z_off_t ZEXPORT unztell(unzFile file) { 1770 return (z_off_t)pfile_in_zip_read_info->stream.total_out;
|
/src/common/dist/zlib/examples/ |
gznorm.c | 20 // z_stream, z_off_t, crc32_combine, Z_NULL, Z_BLOCK, 392 z_off_t len2 = memb;
|
gzjoin.c | 288 z_off_t len; /* length of uncompressed data (support > 4 GB) */
|
/src/common/dist/zlib/test/ |
example.c | 91 z_off_t pos;
|