/external/eigen/bench/btl/libs/BLAS/ |
D | blas.h | 4 #define BLASFUNC(FUNC) FUNC##_ macro 14 int BLASFUNC(xerbla)(const char *, int *info, int); 16 float BLASFUNC(sdot) (int *, float *, int *, float *, int *); 17 float BLASFUNC(sdsdot)(int *, float *, float *, int *, float *, int *); 19 double BLASFUNC(dsdot) (int *, float *, int *, float *, int *); 20 double BLASFUNC(ddot) (int *, double *, int *, double *, int *); 21 double BLASFUNC(qdot) (int *, double *, int *, double *, int *); 24 int BLASFUNC(cdotu) (int *, float * , int *, float *, int *); 25 int BLASFUNC(cdotc) (int *, float *, int *, float *, int *); 26 void BLASFUNC(zdotu) (double *, int *, double *, int *, double *, int *); [all …]
|
/external/eigen/Eigen/src/misc/ |
D | blas.h | 9 #define BLASFUNC(FUNC) FUNC##_ macro 19 int BLASFUNC(xerbla)(const char *, int *info, int); 21 float BLASFUNC(sdot) (int *, float *, int *, float *, int *); 22 float BLASFUNC(sdsdot)(int *, float *, float *, int *, float *, int *); 24 double BLASFUNC(dsdot) (int *, float *, int *, float *, int *); 25 double BLASFUNC(ddot) (int *, double *, int *, double *, int *); 26 double BLASFUNC(qdot) (int *, double *, int *, double *, int *); 28 int BLASFUNC(cdotuw) (int *, float *, int *, float *, int *, float*); 29 int BLASFUNC(cdotcw) (int *, float *, int *, float *, int *, float*); 30 int BLASFUNC(zdotuw) (int *, double *, int *, double *, int *, double*); [all …]
|
D | lapack.h | 11 int BLASFUNC(csymv) (const char *, const int *, const float *, const float *, const int *, const … 12 int BLASFUNC(zsymv) (const char *, const int *, const double *, const double *, const int *, const … 13 int BLASFUNC(xsymv) (const char *, const int *, const double *, const double *, const int *, const … 16 int BLASFUNC(cspmv) (char *, int *, float *, float *, 18 int BLASFUNC(zspmv) (char *, int *, double *, double *, 20 int BLASFUNC(xspmv) (char *, int *, double *, double *, 23 int BLASFUNC(csyr) (char *, int *, float *, float *, int *, 25 int BLASFUNC(zsyr) (char *, int *, double *, double *, int *, 27 int BLASFUNC(xsyr) (char *, int *, double *, double *, int *, 30 int BLASFUNC(cspr) (char *, int *, float *, float *, int *, [all …]
|
/external/eigen/blas/ |
D | single.cpp | 21 float BLASFUNC(sdsdot)(int* n, float* alpha, float* x, int* incx, float* y, int* incy) in BLASFUNC() function 22 { return double(*alpha) + BLASFUNC(dsdot)(n, x, incx, y, incy); } in BLASFUNC()
|
D | double.cpp | 22 double BLASFUNC(dsdot)(int* n, float* x, int* incx, float* y, int* incy) in BLASFUNC() function
|
/external/eigen/Eigen/src/Core/products/ |
D | GeneralMatrixMatrixTriangular_BLAS.h | 75 #define EIGEN_BLAS_RANKUPDATE_R(EIGTYPE, BLASTYPE, BLASFUNC) \ argument 91 …BLASFUNC(&uplo, &trans, &n, &k, &numext::real_ref(alpha), lhs, &lda, &numext::real_ref(beta), res,… 96 #define EIGEN_BLAS_RANKUPDATE_C(EIGTYPE, BLASTYPE, RTYPE, BLASFUNC) \ argument 124 BLASFUNC(&uplo, &trans, &n, &k, &alpha_, (BLASTYPE*)a_ptr, &lda, &beta_, (BLASTYPE*)res, &ldc); \
|
D | SelfadjointMatrixVector_BLAS.h | 74 #define EIGEN_BLAS_SYMV_SPECIALIZATION(EIGTYPE,BLASTYPE,BLASFUNC) \ argument 98 …BLASFUNC(&uplo, &n, &numext::real_ref(alpha), (const BLASTYPE*)lhs, &lda, (const BLASTYPE*)x_ptr, …
|