Home | History | Annotate | Download | only in src

Lines Matching refs:step

51     step(step_), data((uchar*)data_), refcount(0),
57 if (step == Mat::AUTO_STEP)
59 step = minstep;
65 step = minstep;
67 CV_DbgAssert( step >= minstep );
69 flags |= step == minstep ? Mat::CONTINUOUS_FLAG : 0;
72 dataend += step * (rows - 1) + minstep;
77 step(step_), data((uchar*)data_), refcount(0),
83 if (step == Mat::AUTO_STEP)
85 step = minstep;
91 step = minstep;
93 CV_DbgAssert( step >= minstep );
95 flags |= step == minstep ? Mat::CONTINUOUS_FLAG : 0;
98 dataend += step * (rows - 1) + minstep;
104 step = m.step; refcount = m.refcount;
117 data += step*rowRange_.start;
145 step(m.step), data(m.data + roi.y*step), refcount(m.refcount),
190 hdr.step = total_width * elemSize1();
206 CV_DbgAssert( step > 0 );
218 ofs.y = static_cast<int>(delta1 / step);
219 ofs.x = static_cast<int>((delta1 - step * ofs.y) / esz);
221 CV_DbgAssert( data == datastart + ofs.y * step + ofs.x * esz );
226 wholeSize.height = std::max(static_cast<int>((delta2 - minstep) / step + 1), ofs.y + rows);
227 wholeSize.width = std::max(static_cast<int>((delta2 - step * (wholeSize.height - 1)) / esz), ofs.x + cols);
244 data += (row1 - ofs.y) * step + (col1 - ofs.x) * esz;
248 if (esz * cols == step || rows == 1)
308 wholeSize.height = std::max(static_cast<int>((delta2 - minstep) / static_cast<size_t>(obj.step) + 1), obj.rows);
309 wholeSize.width = std::max(static_cast<int>((delta2 - static_cast<size_t>(obj.step) * (wholeSize.height - 1)) / esz), obj.cols);