Lines Matching refs:rofs
330 int rofs = -MIN(ndisp - 1 + mindisp, 0); in findStereoCorrespondenceBM_SSE2() local
332 int width1 = width - rofs - ndisp + 1; in findStereoCorrespondenceBM_SSE2()
342 const uchar* rptr0 = right.ptr() + rofs; in findStereoCorrespondenceBM_SSE2()
370 rptr = rptr0 + MIN(MAX(x, -rofs), width-rofs-1) - dy0*sstep; in findStereoCorrespondenceBM_SSE2()
411 rptr = rptr0 + MIN(MAX(x1, -rofs), width-1-rofs) - dy0*sstep; in findStereoCorrespondenceBM_SSE2()
580 int rofs = -MIN(ndisp - 1 + mindisp, 0); in findStereoCorrespondenceBM() local
582 int width1 = width - rofs - ndisp + 1; in findStereoCorrespondenceBM()
600 const uchar* rptr0 = right.ptr() + rofs; in findStereoCorrespondenceBM()
627 rptr = rptr0 + std::min(std::max(x, -rofs), width-rofs-1) - dy0*sstep; in findStereoCorrespondenceBM()
677 rptr = rptr0 + MIN(MAX(x1, -rofs), width-1-rofs) - dy0*sstep; in findStereoCorrespondenceBM()
1110 int rofs = -std::min(ndisp - 1 + mindisp, 0); in compute() local
1111 int width1 = width - rofs - ndisp + 1; in compute()
1113 if( lofs >= width || rofs >= width || width1 < 1 ) in compute()