Lines Matching refs:upper_row
547 const uint32_t* const upper_row = current_row; in GetBestPredictorForTile() local
548 current_row = upper_row + width; in GetBestPredictorForTile()
556 predict = upper_row[col]; // Top. in GetBestPredictorForTile()
558 predict = pred_func(current_row[col - 1], upper_row + col); in GetBestPredictorForTile()
595 const uint32_t* const upper_row = current_row; in CopyTileWithPrediction() local
596 current_row = upper_row + width; in CopyTileWithPrediction()
604 predict = upper_row[col]; // Top. in CopyTileWithPrediction()
606 predict = pred_func(current_row[col - 1], upper_row + col); in CopyTileWithPrediction()
619 uint32_t* const upper_row = argb_scratch; in VP8LResidualImage() local
630 memcpy(upper_row, current_tile_rows + (max_tile_size - 1) * width, in VP8LResidualImage()
631 width * sizeof(*upper_row)); in VP8LResidualImage()