Lines Matching defs:d_size

131                          CvSize a_size, CvSize d_size,                      \
134 int i, j, k, n = a_size.width, m = d_size.width, drows = d_size.height; \
175 b_buf = (arrtype*)cvStackAlloc(d_size.width*sizeof(b_buf[0]) ); \
176 for( j = 0; j < d_size.width; j++ ) \
186 for( j = 0; j <= d_size.width - 2; j += 2, c_data += 2*c_step1 )\
202 for( ; j < d_size.width; j++, c_data += c_step1 ) \
229 for( j = 0; j < d_size.width; j++, b_data += b_step, \
253 else if( d_size.width*sizeof(d_data[0]) <= 1600 ) \
376 CvSize a_size, CvSize d_size, int flags ) \
378 int i, j, k, n = a_size.width, m = d_size.width; \
401 for( i = 0; i < d_size.height; i++, _a_data += a_step0, \
413 for( j = 0; j < d_size.width; j++, b_data += b_step ) \
431 for( i = 0; i < d_size.height; i++, _a_data += a_step0, \
488 arrtype* d_data, size_t d_step, CvSize d_size,\
506 for( ; d_size.height--; _c_data += c_step0, \
513 for( j = 0; j <= d_size.width - 4; j += 4, c_data += 4*c_step1 )\
528 for( ; j < d_size.width; j++, c_data += c_step1 ) \
536 for( j = 0; j <= d_size.width - 4; j += 4 ) \
547 for( ; j < d_size.width; j++ ) \
631 CvSize a_size, d_size;
703 d_size.width = D->cols;
704 d_size.height = D->rows;
711 B->cols != d_size.width ||
712 a_size.height != d_size.height )
718 B->cols != d_size.width ||
719 a_size.width != d_size.height )
725 B->rows != d_size.width ||
726 a_size.height != d_size.height )
732 B->rows != d_size.width ||
733 a_size.width != d_size.height )
738 if( flags == 0 && 2 <= len && len <= 4 && (len == d_size.width || len == d_size.height) )
756 if( len == d_size.width && b != d )
758 for( i = 0; i < d_size.height; i++, d += d_step, a += a_step, c += c_step )
775 for( i = 0; i < d_size.width; i++, d++, b++, c += c_step0 )
787 if( len == d_size.width && b != d )
789 for( i = 0; i < d_size.height; i++, d += d_step, a += a_step, c += c_step )
808 for( i = 0; i < d_size.width; i++, d++, b++, c += c_step0 )
823 if( len == d_size.width && b != d )
825 for( i = 0; i < d_size.height; i++, d += d_step, a += a_step, c += c_step )
837 else if( d_size.width <= 16 && a != d )
846 for( i = 0; i < d_size.width; i++, d++, b++, c += c_step0 )
882 if( len == d_size.width && b != d )
884 for( i = 0; i < d_size.height; i++, d += d_step, a += a_step, c += c_step )
901 for( i = 0; i < d_size.width; i++, d++, b++, c += c_step0 )
913 if( len == d_size.width && b != d )
915 for( i = 0; i < d_size.height; i++, d += d_step, a += a_step, c += c_step )
934 for( i = 0; i < d_size.width; i++, d++, b++, c += c_step0 )
949 if( len == d_size.width && b != d )
951 for( i = 0; i < d_size.height; i++, d += d_step, a += a_step, c += c_step )
972 for( i = 0; i < d_size.width; i++, d++, b++, c += c_step0 )
1012 int buf_size = d_size.width*d_size.height*CV_ELEM_SIZE(type);
1013 if( d_size.width <= CV_MAX_LOCAL_MAT_SIZE )
1021 tmat = cvMat( d_size.height, d_size.width, type, buffer );
1025 if( (d_size.width == 1 || len == 1) && !(flags & CV_GEMM_B_T) && CV_IS_MAT_CONT(B->type) )
1027 b_step = d_size.width == 1 ? 0 : CV_ELEM_SIZE(type);
1031 if( (d_size.width | d_size.height | len) >= 16 && icvBLAS_GEMM_32f_p != 0 )
1070 blas_func( transb, transa, &d_size.width, &d_size.height, &len,
1088 blas_func( transb, transa, &d_size.width, &d_size.height, &len,
1093 else if( ((d_size.height <= block_lin_size/2 || d_size.width <= block_lin_size/2) &&
1095 (d_size.width <= block_lin_size && d_size.height <= block_lin_size && len <= block_lin_size) )
1099 a_size, d_size, alpha, beta, flags );
1140 dm0 = MIN( block_lin_size, d_size.height );
1141 dn0 = MIN( block_lin_size, d_size.width );
1168 for( i = 0; i < d_size.height; i += di )
1171 if( i + di >= d_size.height || 8*(i + di) + di > 8*d_size.height )
1172 di = d_size.height - i;
1174 for( j = 0; j < d_size.width; j += dj )
1181 if( j + dj >= d_size.width || 8*(j + dj) + dj > 8*d_size.width )
1182 dj = d_size.width - j;
1217 if( dj < d_size.width )