Searched refs:gzread (Results 1 – 15 of 15) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | minigzip.c | 258 int gzread OF((gzFile, void *, unsigned)); 260 int gzread(gz, buf, len) in gzread() function 439 len = gzread(in, buf, sizeof(buf));
|
D | INDEX | 48 gzread.c
|
D | gzread.c | 288 int ZEXPORT gzread(file, buf, len) in gzread() function 412 ret = gzread(file, buf, 1);
|
D | ChangeLog | 178 - Correct spelling error in gzread.c 181 - Change gzread() and related to ignore junk after gzip streams 182 - Allow gzread() and related to continue after gzclearerr() 218 - Fix bug in gzread.c when end-of-file is reached 220 - Document gzread() capability to read concurrently written files 340 - Match type exactly in gz_load() invocation in gzread.c 389 - Avoid MSVC loss of data warnings in gzread.c, gzwrite.c 435 - Avoid void * arithmetic in gzread.c and gzwrite.c 446 - Add checks on len in gzread() and gzwrite() 463 - Fix premature EOF from gzread() in gzio.c [Brown] [all …]
|
D | zconf.h | 84 # define gzread z_gzread macro
|
D | zlib.h | 1313 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
|
D | example.c | 151 if (gzread(file, uncompr, (unsigned)uncomprLen) != len) {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | gzio.c | 394 int ZEXPORT gzread (file, buf, len) in gzread() function 508 return gzread(file, &c, 1) == 1 ? c : -1; 548 while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ; 847 size = gzread(file, s->outbuf, (uInt)size);
|
D | minigzip.c | 175 len = gzread(in, buf, sizeof(buf));
|
D | ChangeLog | 30 - Add error return to gzread() for format or i/o error [Levin] 37 - Fix crc check bug in gzread() after gzungetc() [Heiner] 344 - Fix bug in gzread() on concatenated file with 0x1f at end of buffer 391 - fix gzread and gztell for concatenated .gz files (Didier Le Botlan) 690 - allow gzread on concatenated .gz files 717 - fix error checking in gzread 787 - let again gzread copy uncompressed data unchanged (was working in 0.71) 802 - gzread no longer reads one extra byte in certain cases 823 - added transparent reading of non-gziped files in gzread. 824 - fixed bug in gzread (don't read crc as data)
|
D | zlib.h | 1106 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
|
D | example.c | 122 if (gzread(file, uncompr, (unsigned)uncomprLen) != len) {
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/ |
D | zconf.h | 90 # define gzread z_gzread macro
|
D | zlib.h | 1390 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/ |
D | Python2710.inf | 243 Modules/zlib/gzread.c #
|