Home | History | Annotate | Download | only in src

Lines Matching refs:step

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