Home | History | Annotate | Download | only in dsp

Lines Matching refs:upper_row

547       const uint32_t* const upper_row = current_row;
548 current_row = upper_row + width;
556 predict = upper_row[col]; // Top.
558 predict = pred_func(current_row[col - 1], upper_row + col);
595 const uint32_t* const upper_row = current_row;
596 current_row = upper_row + width;
604 predict = upper_row[col]; // Top.
606 predict = pred_func(current_row[col - 1], upper_row + col);
619 uint32_t* const upper_row = argb_scratch;
630 memcpy(upper_row, current_tile_rows + (max_tile_size - 1) * width,
631 width * sizeof(*upper_row));