Lines Matching defs:read
60 * open() can be used to read a file which is not in gzip format;
61 * in this case read() will directly read from the file without
85 /* Binary read the given number of bytes from the compressed file.
87 int read(void* buf, size_t len) {
108 * Binary read the given (array of) object(s) from the compressed file.
109 * If the input file was not in gzip format, read() copies the objects number
111 * returns the number of uncompressed bytes actually read
115 inline int read(izstream& zs, T* x, Items items) {
136 * Read length of string + the string with the '>' operator.