Home
last modified time | relevance | path

Searched refs:m_tmp (Results 1 – 9 of 9) sorted by relevance

/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/
Ds-c.c568 mes_t *m_cur, *m_tmp; in main() local
619 m_tmp = malloc(sizeof(mes_t)); in main()
620 if (m_tmp == NULL) { in main()
624 m_tmp->nthreads = nth; in main()
625 m_tmp->next = NULL; in main()
628 dur = do_threads_test(nth, m_tmp); in main()
632 m_cur->next = m_tmp; in main()
633 m_cur = m_tmp; in main()
635 free(m_tmp); in main()
647 m_tmp = m_cur; in main()
[all …]
/external/ltp/testcases/open_posix_testsuite/stress/threads/fork/
Ds-c1.c123 mes_t *m_cur, *m_tmp; in main() local
280 m_tmp = malloc(sizeof(mes_t)); in main()
282 if (m_tmp == NULL) { in main()
288 m_tmp->nprocess = nprocesses; in main()
289 m_tmp->next = NULL; in main()
290 m_tmp->_data = 0; in main()
291 m_cur->next = m_tmp; in main()
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/
Ds-c1.c124 mes_t *m_cur, *m_tmp; in main() local
247 m_tmp = malloc(sizeof(mes_t)); in main()
249 if (m_tmp == NULL) { in main()
261 m_tmp->nsem = nsem; in main()
262 m_tmp->next = NULL; in main()
263 m_tmp->prev = m_cur; in main()
264 m_cur->next = m_tmp; in main()
266 m_cur = m_tmp; in main()
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/
Ds-c1.c125 mes_t *m_cur, *m_tmp; local
243 m_tmp = (mes_t *) malloc(sizeof(mes_t));
245 if (m_tmp == NULL) {
257 m_tmp->nsem = nsem;
258 m_tmp->next = NULL;
259 m_tmp->prev = m_cur;
260 m_cur->next = m_tmp;
262 m_cur = m_tmp;
/external/eigen/Eigen/src/Eigenvalues/
DGeneralizedEigenSolver.h140 m_tmp(size) in GeneralizedEigenSolver()
162 m_tmp(A.cols())
282 ComplexVectorType m_tmp; variable
308 m_tmp.resize(size); in compute()
312 Map<VectorType> v(reinterpret_cast<Scalar*>(m_tmp.data()), size); in compute()
313 ComplexVectorType &cv = m_tmp; in compute()
DEigenSolver.h113 …EigenSolver() : m_eivec(), m_eivalues(), m_isInitialized(false), m_realSchur(), m_matT(), m_tmp() … in EigenSolver()
128 m_tmp(size) in EigenSolver()
154 m_tmp(matrix.cols())
320 ColumnVectorType m_tmp; variable
615 m_tmp.noalias() = m_eivec.leftCols(j+1) * m_matT.col(j).segment(0, j+1); in doComputeEigenvectors()
616 m_eivec.col(j) = m_tmp; in doComputeEigenvectors()
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/
Ds-c1.c159 mes_t *m_cur, *m_tmp; in main() local
308 m_tmp = malloc(sizeof(mes_t)); in main()
309 if (m_tmp == NULL) { in main()
314 m_tmp->nthreads = in main()
316 m_tmp->next = NULL; in main()
320 m_tmp-> in main()
323 m_cur->next = m_tmp; in main()
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixPower.h393 MatrixType m_tmp; variable
537 m_tmp = m_A.inverse(); in computeIntPower()
539 m_tmp = m_A; in computeIntPower()
543 res = m_tmp * res; in computeIntPower()
547 m_tmp *= m_tmp; in computeIntPower()
564 revertSchur(m_tmp, m_fT, m_U); in computeFracPower()
565 res = m_tmp * res; in computeFracPower()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dpitch_filter.c164 int m_tmp = (lag_index < 0) ? -lag_index : 0; in FilterSegment() local
176 for (m = PITCH_FRACORDER-1; m >= m_tmp; --m) { in FilterSegment()