Searched refs:upper_row (Results 1 – 2 of 2) sorted by relevance
/external/webp/src/dsp/ |
D | lossless_enc.c | 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() [all …]
|
/external/opencv3/3rdparty/libwebp/dsp/ |
D | lossless.c | 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() [all …]
|