Lines Matching refs:chunk
93 the size of a fixed-size chunk buffer. When no buffering argument is
958 chunk = self.raw.read()
963 if chunk in empty_values:
964 nodata_val = chunk
966 current_size += len(chunk)
967 chunks.append(chunk)
982 chunk = self.raw.read(wanted)
987 if chunk in empty_values:
988 nodata_val = chunk
990 avail += len(chunk)
991 chunks.append(chunk)
1524 # and next_input is the chunk of input bytes that comes next after the
1652 Read and decode the next chunk of data from the BufferedReader.
1657 # value). The entire input chunk is sent to the decoder, though
1672 # Read a chunk, decode it, and put the result in self._decoded_chars.