Lines Matching refs:bytes_read
3676 int32 bytes_read = 0; in readContigStripsIntoBuffer() local
3689 bytes_read = TIFFReadEncodedStrip (in, strip, bufp, -1); in readContigStripsIntoBuffer()
3690 rows = bytes_read / scanline_size; in readContigStripsIntoBuffer()
3691 if ((strip < (nstrips - 1)) && (bytes_read != (int32)stripsize)) in readContigStripsIntoBuffer()
3693 (int)strip + 1, (unsigned long) bytes_read, in readContigStripsIntoBuffer()
3696 if (bytes_read < 0 && !ignore) { in readContigStripsIntoBuffer()
3701 bufp += bytes_read; in readContigStripsIntoBuffer()
4762 int32 bytes_read = 0; in readSeparateStripsIntoBuffer() local
4840 bytes_read = TIFFReadEncodedStrip (in, strip, buff, stripsize); in readSeparateStripsIntoBuffer()
4841 rows_this_strip = bytes_read / src_rowsize; in readSeparateStripsIntoBuffer()
4842 if (bytes_read < 0 && !ignore) in readSeparateStripsIntoBuffer()
4852 strip, bytes_read, rows_this_strip, shift_width); in readSeparateStripsIntoBuffer()