Lines Matching refs:current_row
616 const uint32_t* current_row = argb_scratch; in GetBestPredictorForTile() local
625 const uint32_t* const upper_row = current_row; in GetBestPredictorForTile()
626 current_row = upper_row + width; in GetBestPredictorForTile()
631 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left. in GetBestPredictorForTile()
635 predict = pred_func(current_row[col - 1], upper_row + col); in GetBestPredictorForTile()
637 UpdateHisto(histo_argb, VP8LSubPixels(current_row[col], predict)); in GetBestPredictorForTile()
661 const uint32_t* current_row = argb_scratch; in CopyTileWithPrediction() local
667 const uint32_t* const upper_row = current_row; in CopyTileWithPrediction()
668 current_row = upper_row + width; in CopyTileWithPrediction()
674 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left. in CopyTileWithPrediction()
678 predict = pred_func(current_row[col - 1], upper_row + col); in CopyTileWithPrediction()
680 argb[pix] = VP8LSubPixels(current_row[col], predict); in CopyTileWithPrediction()