Home
last modified time | relevance | path

Searched refs:current_row (Results 1 – 3 of 3) sorted by relevance

/external/webp/src/dsp/
Dlossless_enc.c543 const uint32_t* current_row, in Predict() argument
546 return (x == 0) ? ARGB_BLACK : current_row[x - 1]; // Left. in Predict()
550 return pred_func(current_row[x - 1], upper_row + x); in Predict()
577 const uint32_t* current_row = argb_scratch; in GetBestPredictorForTile() local
585 const uint32_t* const upper_row = current_row; in GetBestPredictorForTile()
586 current_row = upper_row + width; in GetBestPredictorForTile()
590 Predict(pred_func, col, row, current_row, upper_row); in GetBestPredictorForTile()
591 uint32_t residual = VP8LSubPixels(current_row[col], predict); in GetBestPredictorForTile()
592 if (!exact && (current_row[col] & kMaskAlpha) == 0) { in GetBestPredictorForTile()
627 uint32_t* current_row = argb_scratch; in CopyImageWithPrediction() local
[all …]
/external/opencv3/3rdparty/libwebp/dsp/
Dlossless.c539 const uint32_t* current_row = argb_scratch; in GetBestPredictorForTile() local
547 const uint32_t* const upper_row = current_row; in GetBestPredictorForTile()
548 current_row = upper_row + width; in GetBestPredictorForTile()
554 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left. in GetBestPredictorForTile()
558 predict = pred_func(current_row[col - 1], upper_row + col); in GetBestPredictorForTile()
560 predict_diff = VP8LSubPixels(current_row[col], predict); in GetBestPredictorForTile()
589 const uint32_t* current_row = argb_scratch; in CopyTileWithPrediction() local
595 const uint32_t* const upper_row = current_row; in CopyTileWithPrediction()
596 current_row = upper_row + width; in CopyTileWithPrediction()
602 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left. in CopyTileWithPrediction()
[all …]
/external/libjpeg-turbo/
Drdtarga.c58 JDIMENSION current_row; /* Current logical row number to read */ member
282 source_row = cinfo->image_height - source->current_row - 1; in get_memory_row()
289 source->current_row++; in get_memory_row()
323 source->current_row = 0; in preload_image()