Searched refs:z_off_t (Results 1 – 25 of 25) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | zlib.h | 1718 ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int)); 1719 ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile)); 1720 ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile)); 1721 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); 1722 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); 1726 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int)); 1727 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile)); 1728 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile)); 1729 ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t)); 1730 ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t)); [all …]
|
D | gzlib.c | 439 z_off_t ZEXPORT gzseek(file, offset, whence) in gzseek() 441 z_off_t offset; 447 return ret == (z_off_t)ret ? (z_off_t)ret : -1; 468 z_off_t ZEXPORT gztell(file) in gztell() 474 return ret == (z_off_t)ret ? (z_off_t)ret : -1; 501 z_off_t ZEXPORT gzoffset(file) in gzoffset() 507 return ret == (z_off_t)ret ? (z_off_t)ret : -1;
|
D | zconf.h | 456 # ifndef z_off_t 457 # define z_off_t off_t macro 480 #ifndef z_off_t 481 # define z_off_t long macro 490 # define z_off64_t z_off_t
|
D | zutil.h | 173 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); 174 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
|
D | adler32.c | 168 z_off_t len2;
|
D | zutil.c | 58 switch ((int)(sizeof(z_off_t))) { in zlibCompileFlags()
|
D | crc32.c | 414 z_off_t len2;
|
D | example.c | 125 z_off_t pos;
|
D | ChangeLog | 545 - Provide two versions of all functions that use the z_off_t type for 687 - Use z_off_t for adler32_combine() and crc32_combine() lengths
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/ |
D | zlib.h | 1865 ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int)); 1866 ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile)); 1867 ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile)); 1868 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); 1869 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t)); 1873 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int)); 1874 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile)); 1875 ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile)); 1876 ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t)); 1877 ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t)); [all …]
|
D | zconf.h | 479 # ifndef z_off_t 480 # define z_off_t off_t macro 503 #ifndef z_off_t 504 # define z_off_t long macro 513 # define z_off64_t z_off_t
|
D | zutil.h | 191 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); 192 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
|
D | adler32.c | 175 z_off_t len2;
|
D | zutil.c | 52 switch ((int)(sizeof(z_off_t))) { in zlibCompileFlags()
|
D | crc32.c | 431 z_off_t len2;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | zconf.in.h | 293 # define z_off_t off_t 300 #ifndef z_off_t 301 # define z_off_t long macro
|
D | zconf.h | 293 # define z_off_t off_t 300 #ifndef z_off_t 301 # define z_off_t long macro
|
D | zlib.h | 1183 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file, 1184 z_off_t offset, int whence)); 1208 ZEXTERN z_off_t ZEXPORT gztell OF((gzFile file)); 1277 z_off_t len2)); 1301 ZEXTERN uLong ZEXPORT crc32_combine OF((uLong crc1, uLong crc2, z_off_t len2));
|
D | gzio.c | 68 z_off_t start; /* start of compressed data in file (header skipped) */ 69 z_off_t in; /* bytes into deflate or inflate */ 70 z_off_t out; /* bytes out of deflate or inflate */ 767 z_off_t ZEXPORT gzseek (file, offset, whence) in gzseek() 769 z_off_t offset; 881 z_off_t ZEXPORT gztell (file) in gztell()
|
D | adler32.c | 131 z_off_t len2;
|
D | zutil.c | 55 switch (sizeof(z_off_t)) { in zlibCompileFlags()
|
D | crc32.c | 373 z_off_t len2;
|
D | example.c | 96 z_off_t pos;
|
D | ChangeLog | 70 - Use z_off_t for adler32_combine() and crc32_combine() lengths
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/zlib/ |
D | zutil.h | 176 ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t)); 177 ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
|