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

/darwin-on-arm/xnu/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
/darwin-on-arm/xnu/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

Completed in 25 milliseconds