Lines Matching refs:current_row

235     uint32_t* const current_row, const uint8_t* const max_diffs, int mode,  in GetResidual()  argument
239 PredictBatch(mode, x_start, y, x_end - x_start, current_row, upper_row, in GetResidual()
248 predict = (x == 0) ? ARGB_BLACK : current_row[x - 1]; // Left. in GetResidual()
252 predict = pred_func(current_row[x - 1], upper_row + x); in GetResidual()
257 residual = VP8LSubPixels(current_row[x], predict); in GetResidual()
259 residual = NearLossless(current_row[x], predict, max_quantization, in GetResidual()
262 current_row[x] = VP8LAddPixels(predict, residual); in GetResidual()
270 residual = VP8LSubPixels(current_row[x], predict); in GetResidual()
272 if ((current_row[x] & kMaskAlpha) == 0) { in GetResidual()
279 current_row[x] = predict & ~kMaskAlpha; in GetResidual()
286 if (x == 0 && y != 0) upper_row[width] = current_row[0]; in GetResidual()
330 uint32_t* current_row = upper_row + width + 1; in GetBestPredictorForTile() local
331 uint8_t* const max_diffs = (uint8_t*)(current_row + width + 1); in GetBestPredictorForTile()
354 memcpy(current_row + context_start_x, in GetBestPredictorForTile()
362 upper_row = current_row; in GetBestPredictorForTile()
363 current_row = tmp; in GetBestPredictorForTile()
368 memcpy(current_row + context_start_x, in GetBestPredictorForTile()
378 GetResidual(width, height, upper_row, current_row, max_diffs, mode, in GetBestPredictorForTile()
424 uint32_t* current_row = upper_row + width + 1; in CopyImageWithPrediction() local
425 uint8_t* current_max_diffs = (uint8_t*)(current_row + width + 1); in CopyImageWithPrediction()
434 upper_row = current_row; in CopyImageWithPrediction()
435 current_row = tmp32; in CopyImageWithPrediction()
436 memcpy(current_row, argb + y * width, 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()