HomeSort by relevance Sort by last modified time
    Searched refs:m_tmp (Results 1 - 9 of 9) sorted by null

  /external/ltp/testcases/open_posix_testsuite/stress/threads/fork/
s-c1.c 123 mes_t *m_cur, *m_tmp; local
280 m_tmp = malloc(sizeof(mes_t));
282 if (m_tmp == NULL) {
288 m_tmp->nprocess = nprocesses;
289 m_tmp->next = NULL;
290 m_tmp->_data = 0;
291 m_cur->next = m_tmp;
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/
s-c.c 568 mes_t *m_cur, *m_tmp; local
619 m_tmp = malloc(sizeof(mes_t));
620 if (m_tmp == NULL) {
624 m_tmp->nthreads = nth;
625 m_tmp->next = NULL;
628 dur = do_threads_test(nth, m_tmp);
632 m_cur->next = m_tmp;
633 m_cur = m_tmp;
635 free(m_tmp);
647 m_tmp = m_cur
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
GeneralizedEigenSolver.h 140 m_tmp(size)
162 m_tmp(A.cols())
282 ComplexVectorType m_tmp; member in class:Eigen::GeneralizedEigenSolver
308 m_tmp.resize(size);
312 Map<VectorType> v(reinterpret_cast<Scalar*>(m_tmp.data()), size);
313 ComplexVectorType &cv = m_tmp;
EigenSolver.h 113 EigenSolver() : m_eivec(), m_eivalues(), m_isInitialized(false), m_realSchur(), m_matT(), m_tmp() {}
128 m_tmp(size)
154 m_tmp(matrix.cols())
320 ColumnVectorType m_tmp; member in class:Eigen::EigenSolver
615 m_tmp.noalias() = m_eivec.leftCols(j+1) * m_matT.col(j).segment(0, j+1);
616 m_eivec.col(j) = m_tmp;
  /external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/
s-c1.c 125 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/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/
s-c1.c 124 mes_t *m_cur, *m_tmp; local
247 m_tmp = malloc(sizeof(mes_t));
249 if (m_tmp == NULL) {
261 m_tmp->nsem = nsem;
262 m_tmp->next = NULL;
263 m_tmp->prev = m_cur;
264 m_cur->next = m_tmp;
266 m_cur = m_tmp;
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/
s-c1.c 159 mes_t *m_cur, *m_tmp; local
308 m_tmp = malloc(sizeof(mes_t));
309 if (m_tmp == NULL) {
314 m_tmp->nthreads =
316 m_tmp->next = NULL;
320 m_tmp->
323 m_cur->next = m_tmp;
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h 393 MatrixType m_tmp; member in class:Eigen::MatrixPower
537 m_tmp = m_A.inverse();
539 m_tmp = m_A;
543 res = m_tmp * res;
547 m_tmp *= m_tmp;
564 revertSchur(m_tmp, m_fT, m_U);
565 res = m_tmp * res;
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
pitch_filter.c 164 int m_tmp = (lag_index < 0) ? -lag_index : 0; local
176 for (m = PITCH_FRACORDER-1; m >= m_tmp; --m) {
178 * m_tmp is computed. This is equivalent to assume samples outside

Completed in 775 milliseconds