Home | History | Annotate | Download | only in src

Lines Matching refs:min_step

132     int min_step;
138 min_step = CV_ELEM_SIZE(type)*cols;
139 if( min_step <= 0 )
144 arr->step = rows == 1 ? 0 : cvAlign(min_step, CV_DEFAULT_MAT_ROW_ALIGN);
146 (arr->step == 0 || arr->step == min_step ? CV_MAT_CONT_FLAG : 0);
173 int mask, pix_size, min_step;
194 min_step = arr->cols*pix_size & mask;
198 if( step < min_step )
204 arr->step = min_step;
208 (arr->step == min_step ? CV_MAT_CONT_FLAG : 0);
1051 int pix_size, min_step;
1062 min_step = mat->cols*pix_size & ((mat->rows <= 1) - 1);
1066 if( step < min_step && data != 0 )
1072 mat->step = min_step;
1077 (mat->step==min_step ? CV_MAT_CONT_FLAG : 0);
1085 min_step = img->width*pix_size;
1089 if( step < min_step && data != 0 )
1095 img->widthStep = min_step;