Home | History | Annotate | Download | only in dsp

Lines Matching refs:upper_row

544                                     const uint32_t* upper_row) {
548 return upper_row[x]; // Top.
550 return pred_func(current_row[x - 1], upper_row + x);
585 const uint32_t* const upper_row = current_row;
586 current_row = upper_row + width;
590 Predict(pred_func, col, row, current_row, upper_row);
628 uint32_t* upper_row = argb_scratch + width + 1;
635 uint32_t* tmp = upper_row;
636 upper_row = current_row;
644 Predict(pred_func, x, y, current_row, upper_row);
655 predict = Predict(pred_func, x, y, current_row, upper_row);
665 if (x == 0 && y != 0) upper_row[width] = current_row[x];
679 uint32_t* const upper_row = argb_scratch;
696 memcpy(upper_row, current_tile_rows + (max_tile_size - 1) * width,
697 width * sizeof(*upper_row));