Home | History | Annotate | Download | only in src

Lines Matching refs:size1

117 static CvStatus icvInitEMD( const float *signature1, int size1,
177 int dims, size1, size2;
186 size1 = signature1->rows;
199 if( flow->rows != size1 || flow->cols != size2 )
223 if( cost->rows != size1 || cost->cols != size2 )
255 IPPI_CALL( result = icvInitEMD( signature1->data.fl, size1,
334 icvInitEMD( const float* signature1, int size1,
354 buffer_size = (size1+1) * (size2+1) * (sizeof( float ) + /* cost */
357 (size1 + size2 + 2) * (sizeof( CvNode2D ) + /* _x */
362 (size1+1) * (sizeof( float * ) + sizeof( char * ) + /* rows pointers for */
386 buffer += (size1 + 1) * sizeof( int );
392 buffer += (size1 + 1) * sizeof( float );
398 for( i = 0; i < size1; i++ )
453 int sz1 = size1 * (dims + 1), sz2 = size2 * (dims + 1);