Lines Matching refs:current_row
607 const uint32_t* current_row = argb_scratch;
616 const uint32_t* const upper_row = current_row;
617 current_row = upper_row + width;
622 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
626 predict = pred_func(current_row[col - 1], upper_row + col);
628 UpdateHisto(histo_argb, VP8LSubPixels(current_row[col], predict));
652 const uint32_t* current_row = argb_scratch;
658 const uint32_t* const upper_row = current_row;
659 current_row = upper_row + width;
665 predict = (col == 0) ? ARGB_BLACK : current_row[col - 1]; // Left.
669 predict = pred_func(current_row[col - 1], upper_row + col);
671 argb[pix] = VP8LSubPixels(current_row[col], predict);