Lines Matching refs:upper_row
544 const uint32_t* upper_row) { in Predict() argument
548 return upper_row[x]; // Top. in Predict()
550 return pred_func(current_row[x - 1], upper_row + x); in Predict()
585 const uint32_t* const upper_row = current_row; in GetBestPredictorForTile() local
586 current_row = upper_row + width; in GetBestPredictorForTile()
590 Predict(pred_func, col, row, current_row, upper_row); in GetBestPredictorForTile()
628 uint32_t* upper_row = argb_scratch + width + 1; in CopyImageWithPrediction() local
635 uint32_t* tmp = upper_row; in CopyImageWithPrediction()
636 upper_row = current_row; in CopyImageWithPrediction()
644 Predict(pred_func, x, y, current_row, upper_row); in CopyImageWithPrediction()
655 predict = Predict(pred_func, x, y, current_row, upper_row); in CopyImageWithPrediction()
665 if (x == 0 && y != 0) upper_row[width] = current_row[x]; in CopyImageWithPrediction()
679 uint32_t* const upper_row = argb_scratch; in VP8LResidualImage() local
696 memcpy(upper_row, current_tile_rows + (max_tile_size - 1) * width, in VP8LResidualImage()
697 width * sizeof(*upper_row)); in VP8LResidualImage()