Searched refs:lwork (Results 1 - 9 of 9) sorted by relevance

/external/eigen/bench/btl/libs/BLAS/
H A Dblas_interface.hh32 void ssytrd_(char *uplo, const int *n, float *a, const int *lda, float *d, float *e, float *tau, float *work, int *lwork, int *info );
33 void dsytrd_(char *uplo, const int *n, double *a, const int *lda, double *d, double *e, double *tau, double *work, int *lwork, int *info );
34 void sgehrd_( const int *n, int *ilo, int *ihi, float *a, const int *lda, float *tau, float *work, int *lwork, int *info );
35 void dgehrd_( const int *n, int *ilo, int *ihi, double *a, const int *lda, double *tau, double *work, int *lwork, int *info );
/external/eigen/lapack/
H A Deigenvalues.cpp14 EIGEN_LAPACK_FUNC(syev,(char *jobz, char *uplo, int* n, Scalar* a, int *lda, Scalar* w, Scalar* /*work*/, int* lwork, int *info)) argument
17 bool query_size = *lwork==-1;
24 else if((!query_size) && *lwork<std::max(1,3**n-1)) *info = -8;
34 *lwork = 0;
H A Dsvd.cpp14 EIGEN_LAPACK_FUNC(gesdd,(char *jobz, int *m, int* n, Scalar* a, int *lda, RealScalar *s, Scalar *u, int *ldu, Scalar *vt, int *ldvt, Scalar* /*work*/, int* lwork, argument
18 bool query_size = *lwork==-1;
41 *lwork = 0;
85 EIGEN_LAPACK_FUNC(gesvd,(char *jobu, char *jobv, int *m, int* n, Scalar* a, int *lda, RealScalar *s, Scalar *u, int *ldu, Scalar *vt, int *ldvt, Scalar* /*work*/, int* lwork, argument
89 bool query_size = *lwork==-1;
111 *lwork = 0;
/external/eigen/Eigen/src/misc/
H A Dlapacke.h4871 lapack_int lwork );
4875 lapack_int lwork );
4880 lapack_complex_float* work, lapack_int lwork );
4886 lapack_complex_double* work, lapack_int lwork );
4942 float* work, lapack_int lwork,
4948 double* work, lapack_int lwork,
4955 lapack_complex_float* work, lapack_int lwork,
4962 lapack_complex_double* work, lapack_int lwork,
4970 float* rcondv, float* work, lapack_int lwork,
4978 double* rcondv, double* work, lapack_int lwork,
[all...]
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU_Memory.h143 * \param lwork if lwork=-1, this routine returns an estimated size of the required memory
147 * \return an estimated size of the required memory if lwork = -1; otherwise, return the size of actually allocated memory when allocation failed, and 0 on success
151 Index SparseLUImpl<Scalar,StorageIndex>::memInit(Index m, Index n, Index annz, Index lwork, Index fillratio, Index panel_size, GlobalLU_t& glu) argument
160 if (lwork == emptyIdxLU)
H A DSparseLUImpl.h36 Index memInit(Index m, Index n, Index annz, Index lwork, Index fillratio, Index panel_size, GlobalLU_t& glu);
H A DSparseLU.h492 * failure occurred, plus A->ncol. If lwork = -1, it is
540 Index lwork = 0; local
541 Index info = Base::memInit(m, n, nnz, lwork, m_perfv.fillfactor, m_perfv.panel_size, m_glu);
/external/eigen/Eigen/src/SuperLUSupport/
H A DSuperLUSupport.h27 SuperMatrix *U, void *work, int lwork, \
35 U, work, lwork, B, X, recip_pivot_growth, rcond, \
51 SuperMatrix *U, void *work, int lwork, \
58 U, work, lwork, B, X, recip_pivot_growth, rcond, \
86 SuperMatrix *U, void *work, int lwork, \
93 U, work, lwork, B, X, recip_pivot_growth, rcond, \
/external/wpa_supplicant_8/wpa_supplicant/
H A Dp2p_supplicant.c2416 static void wpas_p2p_listen_work_free(struct wpas_p2p_listen_work *lwork) argument
2418 if (lwork == NULL)
2420 wpabuf_free(lwork->probe_resp_ie);
2421 os_free(lwork);
2427 struct wpas_p2p_listen_work *lwork; local
2432 lwork = wpa_s->p2p_listen_work->ctx;
2433 wpas_p2p_listen_work_free(lwork);
2442 struct wpas_p2p_listen_work *lwork = work->ctx; local
2450 wpas_p2p_listen_work_free(lwork);
2456 wpa_drv_set_ap_wps_ie(wpa_s, NULL, lwork
2495 struct wpas_p2p_listen_work *lwork; local
[all...]

Completed in 657 milliseconds