Lines Matching refs:upper_row
234 int width, int height, uint32_t* const upper_row, in GetResidual() argument
239 PredictBatch(mode, x_start, y, x_end - x_start, current_row, upper_row, in GetResidual()
250 predict = upper_row[x]; // Top. in GetResidual()
252 predict = pred_func(current_row[x - 1], upper_row + x); in GetResidual()
286 if (x == 0 && y != 0) upper_row[width] = current_row[0]; in GetResidual()
329 uint32_t* upper_row = argb_scratch; in GetBestPredictorForTile() local
330 uint32_t* current_row = upper_row + width + 1; in GetBestPredictorForTile()
361 uint32_t* tmp = upper_row; in GetBestPredictorForTile()
362 upper_row = current_row; in GetBestPredictorForTile()
378 GetResidual(width, height, upper_row, current_row, max_diffs, mode, in GetBestPredictorForTile()
423 uint32_t* upper_row = argb_scratch; in CopyImageWithPrediction() local
424 uint32_t* current_row = upper_row + width + 1; in CopyImageWithPrediction()
433 uint32_t* const tmp32 = upper_row; in CopyImageWithPrediction()
434 upper_row = current_row; in CopyImageWithPrediction()
440 PredictBatch(kPredLowEffort, 0, y, width, current_row, upper_row, in CopyImageWithPrediction()
462 GetResidual(width, height, upper_row, current_row, current_max_diffs, in CopyImageWithPrediction()