/external/zlib/ |
Makefile.in | 56 OBJC = adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o \ 59 PIC_OBJC = adler32.lo compress.lo crc32.lo deflate.lo gzclose.lo gzlib.lo gzread.lo \ 240 gzclose.o gzlib.o gzread.o gzwrite.o: zlib.h zconf.h gzguts.h 250 gzclose.lo gzlib.lo gzread.lo gzwrite.lo: zlib.h zconf.h gzguts.h
|
treebuild.xml | 36 <source name="gzread.c">
|
CMakeLists.txt | 104 gzread.c
|
ChangeLog | 76 - Match type exactly in gz_load() invocation in gzread.c 125 - Avoid MSVC loss of data warnings in gzread.c, gzwrite.c 171 - Avoid void * arithmetic in gzread.c and gzwrite.c 182 - Add checks on len in gzread() and gzwrite() 199 - Fix premature EOF from gzread() in gzio.c [Brown] 272 - Fix EOF detection in transparent gzread() [Maier] 383 - Add error return to gzread() for format or i/o error [Levin] 390 - Fix crc check bug in gzread() after gzungetc() [Heiner] [all...] |
example.c | 122 if (gzread(file, uncompr, (unsigned)uncomprLen) != len) { 123 fprintf(stderr, "gzread err: %s\n", gzerror(file, &err)); 127 fprintf(stderr, "bad gzread: %s\n", (char*)uncompr); 130 printf("gzread(): %s\n", (char*)uncompr);
|
gzread.c | 0 /* gzread.c -- zlib functions for reading gzip files 362 int ZEXPORT gzread(file, buf, len) function 476 /* nothing there -- try gzread() */ 477 ret = gzread(file, buf, 1);
|
gzio.c | 392 gzread returns the number of bytes actually read (0 for end of file). 394 int ZEXPORT gzread (file, buf, len) function 508 return gzread(file, &c, 1) == 1 ? c : -1; 548 while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ; 760 Sets the starting position for the next gzread or gzwrite on the given 847 size = gzread(file, s->outbuf, (uInt)size); 877 Returns the starting position for the next gzread or gzwrite on the
|
make_vms.com | 15 $! 0.04 20100110 Add new gzclose, gzlib, gzread, gzwrite 156 $ CALL MAKE gzread.OBJ "CC ''CCOPT' gzread" - 157 gzread.c zutil.h zlib.h zconf.h 403 gzread.obj, gzwrite.obj, uncompr.obj, infback.obj\ 437 gzread.obj : gzread.c zutil.h zlib.h zconf.h
|
/external/zlib/as400/ |
bndsrc | 48 EXPORT SYMBOL("gzread")
|
zlib.inc | 140 D gzread PR 10I 0 extproc('gzread')
|
/external/zlib/contrib/vstudio/vc10/ |
zlibvc.vcxproj.filters | 36 <ClCompile Include="..\..\..\gzread.c">
|
/external/zlib/msdos/ |
Makefile.dj2 | 54 OBJS = adler32.o compress.o crc32.o gzclose.o gzlib.o gzread.o gzwrite.o \
|
/external/zlib/old/as400/ |
bndsrc | 48 EXPORT SYMBOL("gzread")
|
zlib.inc | 140 D gzread PR 10I 0 extproc('gzread')
|
/external/zlib/win32/ |
Makefile.gcc | 65 OBJS = adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o \ 155 gzread.o: zlib.h zconf.h gzguts.h
|
/external/zlib/old/ |
zlib.html | 116 <li> int <a href="#gzread">gzread</a> (gzFile file, voidp buf, unsigned len); 191 case <a href="#gzread">gzread</a> will directly read from the file without decompression. 224 <font color="Blue"><dt> int <a name="gzread">gzread</a> (gzFile file, voidp buf, unsigned len);</font> 227 If the input file was not in gzip format, <a href="#gzread">gzread</a> copies the given number 230 <a href="#gzread">gzread</a> returns the number of uncompressed bytes actually read (0 fo [all...] |
/external/zlib/contrib/ada/ |
zlib-thin.ads | 192 function gzread 405 pragma Import (C, gzread, "gzread");
|
/external/zlib/contrib/iostream/ |
zfstream.cpp | 244 int t = gzread( file, p, required );
|
/external/zlib/contrib/pascal/ |
example.pas | 129 if gzread(zfile, uncompr, uncomprLen) <> len then 131 WriteLn('gzread err: ', gzerror(zfile, err)); 136 WriteLn('bad gzread: ', PChar(uncompr)); 140 WriteLn('gzread(): ', PChar(uncompr));
|
/external/chromium/third_party/zlib/ |
gzio.c | 396 gzread returns the number of bytes actually read (0 for end of file). 398 int ZEXPORT gzread (file, buf, len) function 512 return gzread(file, &c, 1) == 1 ? c : -1; 552 while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ; 764 Sets the starting position for the next gzread or gzwrite on the given 851 size = gzread(file, s->outbuf, (uInt)size); 881 Returns the starting position for the next gzread or gzwrite on the
|
/external/qemu/distrib/zlib-1.2.3/ |
gzio.c | 392 gzread returns the number of bytes actually read (0 for end of file). 394 int ZEXPORT gzread (file, buf, len) function 508 return gzread(file, &c, 1) == 1 ? c : -1; 548 while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ; 760 Sets the starting position for the next gzread or gzwrite on the given 847 size = gzread(file, s->outbuf, (uInt)size); 877 Returns the starting position for the next gzread or gzwrite on the
|
/external/zlib/contrib/untgz/ |
untgz.c | 404 len = gzread(in, &buffer, BLOCKSIZE); 511 len = gzread(in, fname, BLOCKSIZE);
|
/development/ndk/platforms/android-3/arch-arm/lib/ |
libz.so | |
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/lib/ |
libz.so | |
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/lib/ |
libz.so | |