Searched defs:lwork (Results 1 - 4 of 4) sorted by relevance

/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;
51 *lwork = 0;
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU_Memory.h144 * \param lwork if lwork=-1, this routine returns an estimated size of the required memory
148 * \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
152 Index SparseLUImpl<Scalar,Index>::memInit(Index m, Index n, Index annz, Index lwork, Index fillratio, Index panel_size, GlobalLU_t& glu) argument
161 if (lwork == emptyIdxLU)
H A DSparseLU.h450 * failure occurred, plus A->ncol. If lwork = -1, it is
496 Index lwork = 0; local
497 Index info = Base::memInit(m, n, nnz, lwork, m_perfv.fillfactor, m_perfv.panel_size, m_glu);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dp2p_supplicant.c1766 static void wpas_p2p_listen_work_free(struct wpas_p2p_listen_work *lwork) argument
1768 if (lwork == NULL)
1770 wpabuf_free(lwork->probe_resp_ie);
1771 os_free(lwork);
1777 struct wpas_p2p_listen_work *lwork; local
1782 lwork = wpa_s->p2p_listen_work->ctx;
1783 wpas_p2p_listen_work_free(lwork);
1792 struct wpas_p2p_listen_work *lwork = work->ctx; local
1799 wpas_p2p_listen_work_free(lwork);
1805 wpa_drv_set_ap_wps_ie(wpa_s, NULL, lwork
1836 struct wpas_p2p_listen_work *lwork; local
[all...]

Completed in 660 milliseconds