HomeSort by: relevance | last modified time | path
    Searched refs:gzread (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/common/dist/zlib/watcom/
watcom_l.mak 8 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
watcom_f.mak 8 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
  /src/sbin/savecore/
zopen.c 21 return gzread(cookie, data, size);
  /src/distrib/utils/zcat/
Makefile 18 SRCS= zcat.c gzread.c gzclose.c gzlib.c inflate.c
zcat.c 61 len = gzread(in, buf, sizeof(buf));
  /src/common/dist/zlib/contrib/delphi/
zlibd32.mak 21 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
  /src/common/dist/zlib/contrib/pascal/
zlibd32.mak 21 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
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));
  /src/common/dist/zlib/contrib/iostream2/
zstream.h 88 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());
  /src/lib/libz/
Makefile 17 gzlib.c gzread.c gzclose.c
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
GZipStream.cs 30 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);
  /src/usr.bin/grep/
file.c 86 nr = gzread(gzbufdesc, buffer, MAXBUFSIZ);
101 * As opposed to gzread(), which simply returns the
  /src/common/dist/zlib/
make_vms.com 15 $! 0.04 20100110 Add new gzclose, gzlib, gzread, gzwrite
191 $ CALL MAKE gzread.OBJ "CC ''CCOPT' gzread" -
192 gzread.c zutil.h zlib.h zconf.h
430 gzread.obj, gzwrite.obj, uncompr.obj, infback.obj\
463 gzread.obj : gzread.c zutil.h zlib.h zconf.h
742 $ module2 = "gzclose#gzerror#gzgetc#gzgets#gzopen#gzprintf#gzputc#gzputs#gzread"
zconf.h 97 # define gzread z_gzread macro
468 * platforms can support 64-bit file offsets for gzread/gzseek/&c.
gzread.c 0 /* gzread.c -- zlib functions for reading gzip files
345 int ZEXPORT gzread(gzFile file, voidp buf, unsigned len) { function
zlib.h 871 CRC-32 instead of an Adler-32. Unlike the gunzip utility and gzread() (see
1336 case gzread will directly read from the file without decompression. When
1397 ZEXTERN int ZEXPORT gzread(gzFile file, voidp buf, unsigned len);
1400 the input file is not in gzip format, gzread copies the given number of
1403 After reaching the end of a gzip stream in the input, gzread will continue
1405 concatenated in the input file, and will all be decompressed by gzread().
1409 gzread can be used to read a gzip file that is being concurrently written.
1410 Upon reaching the end of the input, gzread will return with the available
1413 gzread to be tried again. Z_OK indicates that a gzip stream was completed
1414 on the last gzread. Z_BUF_ERROR indicates that the input file ended in th
    [all...]
zconf.h.cmakein 95 # define gzread z_gzread
zconf.h.in 93 # define gzread z_gzread
  /src/common/dist/zlib/contrib/untgz/
untgz.c 403 len = gzread(in, &buffer, BLOCKSIZE);
510 len = gzread(in, fname, BLOCKSIZE);
  /src/common/dist/zlib/test/
minigzip.c 230 static int gzread(gzFile gz, void *buf, unsigned len) { function
375 len = gzread(in, buf, sizeof(buf));
example.c 117 if (gzread(file, uncompr, (unsigned)uncomprLen) != len) {
118 fprintf(stderr, "gzread err: %s\n", gzerror(file, &err));
122 fprintf(stderr, "bad gzread: %s\n", (char*)uncompr);
125 printf("gzread(): %s\n", (char*)uncompr);
  /src/common/dist/zlib/contrib/iostream/
zfstream.cpp 244 int t = gzread( file, p, required );
  /src/common/dist/zlib/contrib/iostream3/
zfstream.cc 197 int bytes_read = gzread(file, buffer, buffer_size);
  /src/sys/net/
zlib.h 973 case gzread will directly read from the file without decompression.
1001 ZEXTERN int ZEXPORT gzread(gzFile, voidp, unsigned);
1004 If the input file was not in gzip format, gzread copies the given number
1006 gzread returns the number of uncompressed bytes actually read (0 for
1069 Sets the starting position for the next gzread or gzwrite on the
1097 Returns the starting position for the next gzread or gzwrite on the
  /src/libexec/makewhatis/
makewhatis.c 792 while ((bytes = gzread(in, buffer, sizeof(buffer))) > 0)
856 while (gzread(in, buffer, sizeof(buffer)) > 0);

Completed in 42 milliseconds

1 2