Home | History | Annotate | Download | only in dsp

Lines Matching refs:row_start

608   const int row_start = tile_y << bits;
610 const int max_y = GetMin(tile_size, height - row_start);
624 const int row = row_start + y;
656 const int row_start = tile_y << bits;
658 const int max_y = GetMin(tile_size, height - row_start);
666 const int row = row_start + y;
1245 int row_start, int row_end,
1248 assert(row_start < row_end);
1252 VP8LAddGreenToBlueAndRed(out, (row_end - row_start) * width);
1255 PredictorInverseTransform(transform, row_start, row_end, out);
1259 memcpy(out - width, out + (row_end - row_start - 1) * width,
1264 ColorSpaceInverseTransform(transform, row_start, row_end, out);
1273 const int out_stride = (row_end - row_start) * width;
1274 const int in_stride = (row_end - row_start) *
1278 ColorIndexInverseTransform(transform, row_start, row_end, src, out);
1280 ColorIndexInverseTransform(transform, row_start, row_end, in, out);