Home | History | Annotate | Download | only in png

Lines Matching defs:Read

325 // Read presents one or more IDAT chunks as one continuous stream (minus the
329 // immediately before the first Read call is that d.r is positioned between the
330 // first IDAT and xxx, and the decoder state immediately after the last Read
332 func (d *decoder) Read(p []byte) (int, error) {
341 // Read the length and chunk type of the next chunk, and check that
356 n, err := d.r.Read(p[:min(len(p), int(d.idatLength))])
398 n, err = r.Read(d.tmp[:1])
432 // shouldn't even read a per-row filter type byte, so return early.
507 // Read the decompressed bytes.
860 // Read the length and chunk type.
869 // Read the chunk data.