Searched refs:actual_x (Results 1 – 3 of 3) sorted by relevance
/external/eigen/blas/ |
D | level2_impl.h | 230 Scalar* actual_x = get_compact_vector(x,actual_n,*incx); in EIGEN_BLAS_FUNC() local 249 vector(actual_y+start,len) += (alpha*actual_x[j]) * mat_coeffs.col(j).segment(offset,len); in EIGEN_BLAS_FUNC() 251 …actual_y[j] += alpha * ( mat_coeffs.col(j).segment(offset,len).transpose() * vector(actual_x+start… in EIGEN_BLAS_FUNC() 253 …actual_y[j] += alpha * ( mat_coeffs.col(j).segment(offset,len).adjoint() * vector(actual_x+start… in EIGEN_BLAS_FUNC() 256 if(actual_x!=x) delete[] actual_x; in EIGEN_BLAS_FUNC() 292 Scalar* actual_x = get_compact_vector(x,actual_n,*incx); 307 vector(actual_y+start,len) += (alpha*actual_x[j]) * mat_coeffs.col(j).segment(offset,len); 309 …actual_y[j] += alpha * ( mat_coeffs.col(j).segment(offset,len).transpose() * vector(actual_x+start… 311 …actual_y[j] += alpha * ( mat_coeffs.col(j).segment(offset,len).adjoint() * vector(actual_x+start… 314 if(actual_x!=x) delete[] actual_x; [all …]
|
D | level2_real_impl.h | 49 Scalar* actual_x = get_compact_vector(x,*n,*incx); in EIGEN_BLAS_FUNC() local 62 func[code](*n, a, *lda, actual_x, 1, actual_y, alpha); in EIGEN_BLAS_FUNC() 64 if(actual_x!=x) delete[] actual_x; in EIGEN_BLAS_FUNC()
|
D | level2_cplx_impl.h | 55 Scalar* actual_x = get_compact_vector(x,*n,*incx); in EIGEN_BLAS_FUNC() local 70 func[code](*n, a, *lda, actual_x, 1, actual_y, alpha); in EIGEN_BLAS_FUNC() 73 if(actual_x!=x) delete[] actual_x; in EIGEN_BLAS_FUNC()
|