Lines Matching refs:step

92     ids_delta = labels->step ? labels->step/(int)sizeof(int) : 1;  in cvKMeans2()
113 float* s = (float*)(samples->data.ptr + i*samples->step); in cvKMeans2()
115 double* c = (double*)(centers->data.ptr + k*centers->step); in cvKMeans2()
140 double* c = (double*)(centers->data.ptr + k*centers->step); in cvKMeans2()
150 float* s = (float*)(samples->data.ptr + i*samples->step); in cvKMeans2()
158 double* c_o = (double*)(old_centers->data.ptr + k*old_centers->step); in cvKMeans2()
172 float* s = (float*)(samples->data.ptr + i*samples->step); in cvKMeans2()
178 double* c = (double*)(centers->data.ptr + k*centers->step); in cvKMeans2()
276 int step = 1, coeff_count; in cvSolveCubic() local
304 step = coeffs->step/sizeof(c[0]); in cvSolveCubic()
306 a0 = c[0], c += step; in cvSolveCubic()
308 a2 = c[step]; in cvSolveCubic()
309 a3 = c[step*2]; in cvSolveCubic()
315 step = coeffs->step/sizeof(c[0]); in cvSolveCubic()
317 a0 = c[0], c += step; in cvSolveCubic()
319 a2 = c[step]; in cvSolveCubic()
320 a3 = c[step*2]; in cvSolveCubic()
386 step = 1; in cvSolveCubic()
392 step = roots->step/sizeof(r[0]); in cvSolveCubic()
394 r[step] = (float)x1; in cvSolveCubic()
395 r[step*2] = (float)x2; in cvSolveCubic()
401 step = roots->step/sizeof(r[0]); in cvSolveCubic()
403 r[step] = x1; in cvSolveCubic()
404 r[step*2] = x2; in cvSolveCubic()
819 int cont_flag, arr_size, elem_size, cols, step; in cvRandShuffle() local
834 step = mat->step; in cvRandShuffle()
839 if( elem_size % sizeof_int == 0 && (cont_flag || step % sizeof_int == 0) ) in cvRandShuffle()
842 step /= sizeof_int; in cvRandShuffle()
878 row1 = idx1/step; row2 = idx2/step; in cvRandShuffle()
879 p = idata + row1*step + (idx1 - row1*cols)*elem_size; in cvRandShuffle()
880 q = idata + row2*step + (idx2 - row2*cols)*elem_size; in cvRandShuffle()
890 row1 = idx1/step; row2 = idx2/step; in cvRandShuffle()
891 p = data + row1*step + (idx1 - row1*cols)*elem_size; in cvRandShuffle()
892 q = data + row2*step + (idx2 - row2*cols)*elem_size; in cvRandShuffle()
915 int type, step; in cvRange() local
932 step = 1; in cvRange()
935 step = mat->step / CV_ELEM_SIZE(type); in cvRange()
945 for( i = 0; i < rows; i++, idata += step ) in cvRange()
951 for( i = 0; i < rows; i++, idata += step ) in cvRange()
959 for( i = 0; i < rows; i++, fdata += step ) in cvRange()
1064 int sstep = src->step, dstep = dst ? dst->step : 0; in cvSort()
1065 int istep = idx ? idx->step/sizeof(int) : 0; in cvSort()