Home | History | Annotate | Download | only in src

Lines Matching refs:SHIFT

566         const int shift = 16;
605 dy0 = cvRound( b*(1 << shift)/fabs(a) );
606 y0 = (y0 << shift) + (1 << (shift-1));
612 dx0 = cvRound( a*(1 << shift)/fabs(b) );
613 x0 = (x0 << shift) + (1 << (shift-1));
633 i1 = y >> shift;
637 j1 = x >> shift;
681 i1 = y >> shift;
685 j1 = x >> shift;
856 const int SHIFT = 10, ONE = 1 << SHIFT, R_THRESH = 30;
941 int x2 = x1 >> SHIFT, y2 = y1 >> SHIFT;