/third_party/zlib/contrib/iostream2/ |
H A D | zstream.h | 88 return ::gzread(m_fp, buf, len); in read() 116 return ::gzread(zs.fp(), x, items*sizeof(T)); in read() 124 ::gzread(zs.fp(), &x, sizeof(T)); in operator >() 140 ::gzread(zs.fp(), x, len.value()); in operator >() 148 ::gzread(zs.fp(), x, len.value()); in read_string()
|
/third_party/zlib/watcom/ |
H A D | 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
|
H A D | 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
|
/third_party/zlib/contrib/delphi/ |
H A D | 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
|
/third_party/zlib/contrib/pascal/ |
H A D | 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
|
/third_party/zlib/contrib/dotzlib/DotZLib/ |
H A D | GZipStream.cs | 30 private static extern int gzread(IntPtr gzFile, int data, int length);
in gzread() method in DotZLib.GZipStream 166 result = gzread(_gzFile, h.AddrOfPinnedObject().ToInt32() + offset, count);
in Read()
|
/third_party/toybox/toys/lsb/ |
H A D | gzip.c | 82 while ((len = gzread(gz, toybuf, sizeof(toybuf))) > 0) in do_deflate()
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | chromeconf.h | 30 * gzread is also addressed by modifications in gzread.c and zlib.h. */ 98 #define gzread Cr_z_gzread macro
|
H A D | zconf.h | 102 # define gzread z_gzread macro
|
H A D | gzread.c | 0 /* gzread.c -- zlib functions for reading gzip files 375 int ZEXPORT gzread(file, buf, len) in gzread() function
|
/third_party/node/deps/zlib/ |
H A D | chromeconf.h | 30 * gzread is also addressed by modifications in gzread.c and zlib.h. */ 101 #define gzread Cr_z_gzread macro
|
H A D | zconf.h | 105 # define gzread z_gzread macro
|
H A D | zlib.h | 868 CRC-32 instead of an Adler-32. Unlike the gunzip utility and gzread() (see 1333 case gzread will directly read from the file without decompression. When 1394 ZEXTERN int ZEXPORT gzread(gzFile file, voidp buf, unsigned len); 1397 the input file is not in gzip format, gzread copies the given number of 1400 After reaching the end of a gzip stream in the input, gzread will continue 1402 concatenated in the input file, and will all be decompressed by gzread(). 1406 gzread can be used to read a gzip file that is being concurrently written. 1407 Upon reaching the end of the input, gzread will return with the available 1410 gzread to be tried again. Z_OK indicates that a gzip stream was completed 1411 on the last gzread [all...] |
H A D | gzread.c | 0 /* gzread.c -- zlib functions for reading gzip files 345 int ZEXPORT gzread(gzFile file, voidp buf, unsigned len) { in gzread() function
|
/third_party/skia/third_party/externals/zlib/ |
H A D | chromeconf.h | 30 * gzread is also addressed by modifications in gzread.c and zlib.h. */ 98 #define gzread Cr_z_gzread macro
|
H A D | zconf.h | 102 # define gzread z_gzread macro
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | gzread.c | 0 /* gzread.c -- zlib functions for reading gzip files
362 int ZEXPORT gzread(file, buf, len)
in gzread() function 476 /* nothing there -- try gzread() */
477 ret = gzread(file, buf, 1);
|
H A D | zconf.h | 73 # define gzread z_gzread
macro
|
H A D | zlib.h | 1181 case gzread will directly read from the file without decompression.
1235 ZEXTERN int ZEXPORT gzread OF((gzFile file, voidp buf, unsigned len));
1238 the input file was not in gzip format, gzread copies the given number of
1241 After reaching the end of a gzip stream in the input, gzread will continue
1244 will be read if gzread is called until it returns less than the requested
1247 gzread returns the number of uncompressed bytes actually read, less than
1327 gzip stream will be started in the output. gzread() is able to read such
1338 Sets the starting position for the next gzread or gzwrite on the given
1364 Returns the starting position for the next gzread or gzwrite on the given
|
/third_party/zlib/contrib/untgz/ |
H A D | untgz.c | 443 len = gzread(in, &buffer, BLOCKSIZE); in tar() 569 len = gzread(in, fname, BLOCKSIZE); in tar()
|
/third_party/zlib/test/ |
H A D | minigzip.c | 236 static int gzread(gzFile gz, void *buf, unsigned len) in gzread() function 412 len = gzread(in, buf, sizeof(buf)); in gz_uncompress()
|
/third_party/zlib/contrib/iostream/ |
H A D | zfstream.cpp | 244 int t = gzread( file, p, required ); in fillbuf()
|
/third_party/elfutils/libdwfl/ |
H A D | gzip.c | 379 int n = gzread (state.zf, state.buffer + pos, state.size - pos); in unzip()
|
/third_party/zlib/contrib/iostream3/ |
H A D | zfstream.cc | 197 int bytes_read = gzread(file, buffer, buffer_size); in underflow()
|
/third_party/zlib/ |
H A D | zconf.h | 93 # define gzread z_gzread macro
|