Lines Matching refs:nrows
1198 tmsize_t nrows; in JPEGDecode() local
1211 nrows = cc / sp->bytesperline; in JPEGDecode()
1216 if( nrows > (tmsize_t) sp->cinfo.d.image_height ) in JPEGDecode()
1217 nrows = sp->cinfo.d.image_height; in JPEGDecode()
1220 if (nrows) in JPEGDecode()
1236 } while (--nrows > 0); in JPEGDecode()
1254 tmsize_t nrows; in JPEGDecode() local
1267 nrows = cc / sp->bytesperline; in JPEGDecode()
1272 if( nrows > (tmsize_t) sp->cinfo.d.image_height ) in JPEGDecode()
1273 nrows = sp->cinfo.d.image_height; in JPEGDecode()
1276 if (nrows) in JPEGDecode()
1339 } while (--nrows > 0); in JPEGDecode()
1376 tmsize_t nrows; in JPEGDecodeRaw() local
1380 if ( (nrows = sp->cinfo.d.image_height) != 0 ) { in JPEGDecodeRaw()
1495 nrows -= sp->v_sampling; in JPEGDecodeRaw()
1496 } while (nrows > 0); in JPEGDecodeRaw()
1901 tmsize_t nrows; in JPEGEncode() local
1909 nrows = cc / sp->bytesperline; in JPEGEncode()
1915 if( !isTiled(tif) && tif->tif_row+nrows > tif->tif_dir.td_imagelength ) in JPEGEncode()
1916 nrows = tif->tif_dir.td_imagelength - tif->tif_row; in JPEGEncode()
1932 while (nrows-- > 0) { in JPEGEncode()
1958 if (nrows > 0) in JPEGEncode()
1981 tmsize_t nrows; in JPEGEncodeRaw() local
1997 nrows = ( cc / bytesperclumpline ) * sp->v_sampling; in JPEGEncodeRaw()
2004 while (nrows > 0) { in JPEGEncodeRaw()
2051 nrows -= sp->v_sampling; in JPEGEncodeRaw()