Searched refs:gzread (Results 1 - 25 of 40) sorted by relevance

12

/macosx-10.9.5/zlib-53/zlib/watcom/
H A Dwatcom_l.mak8 gzclose.c gzlib.c gzread.c gzwrite.c &
13 gzclose.obj gzlib.obj gzread.obj gzwrite.obj &
29 wlib -b -c $(ZLIB_LIB) -+gzclose.obj -+gzlib.obj -+gzread.obj -+gzwrite.obj
H A Dwatcom_f.mak8 gzclose.c gzlib.c gzread.c gzwrite.c &
13 gzclose.obj gzlib.obj gzread.obj gzwrite.obj &
29 wlib -b -c $(ZLIB_LIB) -+gzclose.obj -+gzlib.obj -+gzread.obj -+gzwrite.obj
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/zlib/src/
H A DzlibtclStubInit.c58 gzread, /* 33 */
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/zlib/
H A DzlibtclStubInit.c58 gzread, /* 33 */
H A DzlibtclDecls.h111 ZEXTERN int gzread(gzFile file, voidp buf, unsigned len);
264 #define gzread \ macro
/macosx-10.9.5/zlib-53/zlib/contrib/delphi/
H A Dzlibd32.mak21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj
45 gzread.obj: gzread.c zlib.h zconf.h gzguts.h
/macosx-10.9.5/zlib-53/zlib/contrib/pascal/
H A Dzlibd32.mak21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj
45 gzread.obj: gzread.c zlib.h zconf.h gzguts.h
H A Dexample.pas129 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));
/macosx-10.9.5/zlib-53/zlib/contrib/iostream2/
H A Dzstream.h88 return ::gzread(m_fp, buf, len);
116 return ::gzread(zs.fp(), x, items*sizeof(T));
124 ::gzread(zs.fp(), &x, sizeof(T));
140 ::gzread(zs.fp(), x, len.value());
148 ::gzread(zs.fp(), x, len.value());
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/compat/
H A DtclLoadNone.c28 extern int gzread ();
102 { "gzread", gzread },
H A Dzlib.h668 case gzread will directly read from the file without decompression.
696 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
699 If the input file was not in gzip format, gzread copies the given number
701 gzread returns the number of uncompressed bytes actually read (0 for
760 Sets the starting position for the next gzread or gzwrite on the
784 Returns the starting position for the next gzread or gzwrite on the
/macosx-10.9.5/zlib-53/zlib/contrib/dotzlib/DotZLib/
H A DGZipStream.cs30 private static extern int gzread(IntPtr gzFile, int data, int length); method in class:DotZLib.GZipStream
166 result = gzread(_gzFile, h.AddrOfPinnedObject().ToInt32() + offset, count);
/macosx-10.9.5/zlib-53/zlib/
H A DMakefile56 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 \
245 gzclose.o gzlib.o gzread.o gzwrite.o: zlib.h zconf.h gzguts.h
255 gzclose.lo gzlib.lo gzread.lo gzwrite.lo: zlib.h zconf.h gzguts.h
H A Dmake_vms.com15 $! 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
H A Dgzread.c0 /* gzread.c -- zlib functions for reading gzip files
366 int ZEXPORT gzread(file, buf, len) function
480 /* nothing there -- try gzread() */
481 ret = gzread(file, buf, 1);
H A Dzconf.h72 # define gzread z_gzread macro
H A Dminigzip.c244 len = gzread(in, buf, sizeof(buf));
/macosx-10.9.5/sudo-72/src/zlib/
H A Dgzread.c0 /* gzread.c -- zlib functions for reading gzip files
282 int ZEXPORT gzread(file, buf, len) function
400 /* nothing there -- try gzread() */
401 ret = gzread(file, buf, 1);
H A Dzlib.h1230 case gzread will directly read from the file without decompression. When
1290 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1293 the input file is not in gzip format, gzread copies the given number of
1296 After reaching the end of a gzip stream in the input, gzread will continue
1298 concatenated in the input file, and will all be decompressed by gzread().
1302 gzread can be used to read a gzip file that is being concurrently written.
1303 Upon reaching the end of the input, gzread will return with the available
1306 gzread to be tried again. Z_OK indicates that a gzip stream was completed
1307 on the last gzread. Z_BUF_ERROR indicates that the input file ended in the
1308 middle of a gzip stream. Note that gzread doe
[all...]
/macosx-10.9.5/zlib-53/zlib/contrib/untgz/
H A Duntgz.c404 len = gzread(in, &buffer, BLOCKSIZE);
511 len = gzread(in, fname, BLOCKSIZE);
/macosx-10.9.5/xnu-2422.115.4/libkern/zlib/
H A Dgzio.c419 gzread returns the number of bytes actually read (0 for end of file).
421 int ZEXPORT gzread (file, buf, len) function
535 return gzread(file, &c, 1) == 1 ? c : -1;
575 while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ;
787 Sets the starting position for the next gzread or gzwrite on the given
874 size = gzread(file, s->outbuf, (uInt)size);
904 Returns the starting position for the next gzread or gzwrite on the
/macosx-10.9.5/zlib-53/zlib/contrib/iostream/
H A Dzfstream.cpp244 int t = gzread( file, p, required );
/macosx-10.9.5/rsync-42/rsync/zlib/
H A Dzlib.h1079 case gzread will directly read from the file without decompression.
1107 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1110 If the input file was not in gzip format, gzread copies the given number
1112 gzread returns the number of uncompressed bytes actually read (0 for
1187 Sets the starting position for the next gzread or gzwrite on the
1211 Returns the starting position for the next gzread or gzwrite on the
/macosx-10.9.5/xnu-2422.115.4/libkern/libkern/
H A Dzlib.h1108 case gzread will directly read from the file without decompression.
1136 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1139 If the input file was not in gzip format, gzread copies the given number
1141 gzread returns the number of uncompressed bytes actually read (0 for
1216 Sets the starting position for the next gzread or gzwrite on the
1240 Returns the starting position for the next gzread or gzwrite on the
/macosx-10.9.5/zlib-53/zlib/contrib/iostream3/
H A Dzfstream.cc197 int bytes_read = gzread(file, buffer, buffer_size);

Completed in 391 milliseconds

12