Searched refs:stepA (Results 1 – 2 of 2) sorted by relevance
/external/opencv/cxcore/src/ |
D | cxdxt.cpp | 2217 int stepA, stepB, stepC; in cvMulSpectrums() local 2256 stepA = srcA->step/sizeof(dataA[0]); in cvMulSpectrums() 2268 dataC[(rows-1)*stepC] = dataA[(rows-1)*stepA]*dataB[(rows-1)*stepB]; in cvMulSpectrums() 2272 double re = (double)dataA[j*stepA]*dataB[j*stepB] - in cvMulSpectrums() 2273 (double)dataA[(j+1)*stepA]*dataB[(j+1)*stepB]; in cvMulSpectrums() 2274 double im = (double)dataA[j*stepA]*dataB[(j+1)*stepB] + in cvMulSpectrums() 2275 (double)dataA[(j+1)*stepA]*dataB[j*stepB]; in cvMulSpectrums() 2281 double re = (double)dataA[j*stepA]*dataB[j*stepB] + in cvMulSpectrums() 2282 (double)dataA[(j+1)*stepA]*dataB[(j+1)*stepB]; in cvMulSpectrums() 2283 double im = (double)dataA[(j+1)*stepA]*dataB[j*stepB] - in cvMulSpectrums() [all …]
|
D | cxmatrix.cpp | 595 typedef CvStatus (CV_STDCALL * CvLUDecompFunc)( double* A, int stepA, CvSize sizeA, 599 typedef CvStatus (CV_STDCALL * CvLUBackFunc)( double* A, int stepA, CvSize sizeA, 605 icvLUDecomp_##flavor( double* A, int stepA, CvSize sizeA, \ 619 stepA /= sizeof(A[0]); \ 622 for( i = 0; i < n; i++, A += stepA, B += stepB ) \ 632 tA += stepA; \ 651 tA = A + stepA*(k - i); \ 681 tA += stepA; \ 707 icvLUBack_##flavor( double* A, int stepA, CvSize sizeA, \ 715 stepA /= sizeof(A[0]); \ [all …]
|