Home | History | Annotate | Download | only in libtiff

Lines Matching full:scanline

55     tmsize_t scanline, n;
59 * Each scanline is assumed to start off as all
68 scanline = tif->tif_scanlinesize;
69 if (occ % scanline)
74 for (row = buf; occ > 0; occ -= scanline, row += scanline) {
79 * The entire scanline is given as literal values.
81 if (cc < scanline)
83 _TIFFmemcpy(row, bp, scanline);
84 bp += scanline;
85 cc -= scanline;
90 * The scanline has a literal span that begins at some
95 if (cc < 4+n || off+n > scanline)
107 * The scanline is composed of a sequence of constant
110 * <color><npixels> until we've filled the scanline.
117 * Ensure the run does not exceed the scanline
137 TIFFErrorExt(tif->tif_clientdata, module, "Not enough data for scanline %ld",