Home
last modified time | relevance | path

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

/external/webp/src/dsp/
Dlossless.c616 const uint32_t* current_row = argb_scratch; in GetBestPredictorForTile() local
625 const uint32_t* const upper_row = current_row; in GetBestPredictorForTile()
626 current_row = upper_row + width; in GetBestPredictorForTile()
631 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left. in GetBestPredictorForTile()
635 predict = pred_func(current_row[col - 1], upper_row + col); in GetBestPredictorForTile()
637 UpdateHisto(histo_argb, VP8LSubPixels(current_row[col], predict)); in GetBestPredictorForTile()
661 const uint32_t* current_row = argb_scratch; in CopyTileWithPrediction() local
667 const uint32_t* const upper_row = current_row; in CopyTileWithPrediction()
668 current_row = upper_row + width; in CopyTileWithPrediction()
674 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left. in CopyTileWithPrediction()
[all …]
/external/jpeg/
Drdtarga.c56 JDIMENSION current_row; /* Current logical row number to read */ member
281 source_row = cinfo->image_height - source->current_row - 1; in get_memory_row()
288 source->current_row++; in get_memory_row()
322 source->current_row = 0; in preload_image()