Lines Matching defs:w

52 #define icvCopyMatrix_32f( src, w, h, dst ) memcpy((dst),(src),(w)*(h)*sizeof(float))  argument
53 #define icvCopyMatrix_64d( src, w, h, dst ) memcpy((dst),(src),(w)*(h)*sizeof(double)) argument
57 #define icvCreateMatrix_32f( w, h ) (float*)cvAlloc( (w)*(h)*sizeof(float)) argument
58 #define icvCreateMatrix_64d( w, h ) (double*)cvAlloc( (w)*(h)*sizeof(double)) argument
63 #define icvAddMatrix_32f( src1, src2, dst, w, h ) \ argument
66 #define icvSubMatrix_32f( src1, src2, dst, w, h ) \ argument
176 #define icvAddMatrix_64d( src1, src2, dst, w, h ) \ argument
179 #define icvSubMatrix_64d( src1, src2, dst, w, h ) \ argument
183 CV_INLINE void icvSetIdentity_32f( float* dst, int w, int h ) in icvSetIdentity_32f()
192 CV_INLINE void icvSetIdentity_64d( double* dst, int w, int h ) in icvSetIdentity_64d()
201 CV_INLINE void icvTrace_32f( const float* src, int w, int h, float* trace ) in icvTrace_32f()
213 CV_INLINE void icvTrace_64d( const double* src, int w, int h, double* trace ) in icvTrace_64d()
247 CV_INLINE void icvTransposeMatrix_32f( const float* src, int w, int h, float* dst ) in icvTransposeMatrix_32f()
258 CV_INLINE void icvTransposeMatrix_64d( const double* src, int w, int h, double* dst ) in icvTransposeMatrix_64d()
333 #define icvTransformVector_32f( matr, src, dst, w, h ) \ argument
336 #define icvTransformVector_64d( matr, src, dst, w, h ) \ argument
340 #define icvScaleMatrix_32f( src, dst, w, h, scale ) \ argument
343 #define icvScaleMatrix_64d( src, dst, w, h, scale ) \ argument