Lines Matching refs:rows_per_strip
1267 rows_per_strip, in ReadTIFFImage() local
1737 rows_per_strip=(uint32) image->rows; in ReadTIFFImage()
1738 if (TIFFGetField(tiff,TIFFTAG_ROWSPERSTRIP,&rows_per_strip) == 1) in ReadTIFFImage()
1744 (unsigned int) rows_per_strip); in ReadTIFFImage()
1747 if (rows_per_strip > (uint32) image->rows) in ReadTIFFImage()
1748 rows_per_strip=(uint32) image->rows; in ReadTIFFImage()
1777 log(2.0))),image->columns*rows_per_strip)); in ReadTIFFImage()
1945 rows_remaining=rows_per_strip; in ReadTIFFImage()
1946 if ((y+rows_per_strip) > (ssize_t) image->rows) in ReadTIFFImage()
1947 rows_remaining=(rows_per_strip-(y+rows_per_strip- in ReadTIFFImage()
2888 rows_per_strip; in GetTIFFInfo() local
2891 rows_per_strip=TIFFStripSizeDefault/(extent == 0 ? 1 : (uint32) extent); in GetTIFFInfo()
2892 rows_per_strip=16*(((rows_per_strip < 16 ? 16 : rows_per_strip)+1)/16); in GetTIFFInfo()
2894 if (rows_per_strip > rows) in GetTIFFInfo()
2895 rows_per_strip=rows; in GetTIFFInfo()
2898 rows_per_strip=(uint32) strtoul(option,(char **) NULL,10); in GetTIFFInfo()
2899 rows_per_strip=TIFFDefaultStripSize(tiff,rows_per_strip); in GetTIFFInfo()
2900 (void) TIFFSetField(tiff,TIFFTAG_ROWSPERSTRIP,rows_per_strip); in GetTIFFInfo()