Home | History | Annotate | Download | only in src

Lines Matching defs:shift

996     // shift
999 // shift by one
1987 const int shift = 0;
1989 const int r = radius*(1 << shift);
2033 pt.x = cvRound(corners[i].x*(1 << shift));
2034 pt.y = cvRound(corners[i].y*(1 << shift));
2036 cvPoint( pt.x + r, pt.y + r ), color, 1, line_type, shift );
2038 cvPoint( pt.x + r, pt.y - r), color, 1, line_type, shift );
2039 cvCircle( image, pt, r+(1<<shift), color, 1, line_type, shift );
2071 pt.x = cvRound(corners[i].x*(1 << shift));
2072 pt.y = cvRound(corners[i].y*(1 << shift));
2075 cvLine( image, prev_pt, pt, color, 1, line_type, shift );
2078 cvPoint(pt.x + r, pt.y + r), color, 1, line_type, shift );
2080 cvPoint(pt.x + r, pt.y - r), color, 1, line_type, shift );
2081 cvCircle( image, pt, r+(1<<shift), color, 1, line_type, shift );