Lines Matching refs:num_rows
574 int mb_w, int num_rows) {
576 while (num_rows-- > 0) {
635 static void ApplyInverseTransforms(VP8LDecoder* const dec, int num_rows,
638 const int cache_pixs = dec->width_ * num_rows;
640 const int end_row = start_row + num_rows;
655 static void ApplyInverseTransformsAlpha(VP8LDecoder* const dec, int num_rows,
658 const int end_row = start_row + num_rows;
672 const int num_rows = row - dec->last_row_;
674 if (num_rows <= 0) return; // Nothing to be done.
675 ApplyInverseTransforms(dec, num_rows, rows);
727 const int num_rows = row - dec->last_row_;
730 if (num_rows > 0) {
731 ApplyInverseTransformsAlpha(dec, num_rows, in);
1227 const int num_rows = row - dec->last_row_;
1230 if (num_rows <= 0) return; // Nothing to be done.
1231 ApplyInverseTransforms(dec, num_rows, in);
1236 const int cache_pixs = width * num_rows;