Home
last modified time | relevance | path

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

/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/
Ds-c.c561 mes_t *m_cur, *m_tmp; in main() local
612 m_tmp = malloc(sizeof(mes_t)); in main()
613 if (m_tmp == NULL) { in main()
617 m_tmp->nthreads = nth; in main()
618 m_tmp->next = NULL; in main()
621 dur = do_threads_test(nth, m_tmp); in main()
625 m_cur->next = m_tmp; in main()
626 m_cur = m_tmp; in main()
628 free(m_tmp); in main()
640 m_tmp = m_cur; in main()
[all …]
/external/usrsctp/usrsctplib/netinet/
Dsctp_auth.c1018 struct mbuf *m_tmp; local
1056 m_tmp = m;
1057 while ((m_tmp != NULL) && (m_offset >= (uint32_t) SCTP_BUF_LEN(m_tmp))) {
1058 m_offset -= SCTP_BUF_LEN(m_tmp);
1059 m_tmp = SCTP_BUF_NEXT(m_tmp);
1062 while (m_tmp != NULL) {
1063 if ((SCTP_BUF_NEXT(m_tmp) == NULL) && trailer) {
1064 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *) + m_offset,
1065 SCTP_BUF_LEN(m_tmp) - (trailer+m_offset));
1067 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *) + m_offset,
[all …]
Dsctp_output.c5437 struct mbuf *mat, *m_tmp, *op_err, *op_err_last; local
5661 m_tmp = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_NOWAIT, 1, MT_DATA);
5662 if (m_tmp == NULL) {
5668 SCTP_BUF_LEN(m_tmp) = 0;
5669 SCTP_BUF_NEXT(m_tmp) = NULL;
5670 SCTP_BUF_NEXT(op_err_last) = m_tmp;
5671 op_err_last = m_tmp;
5979 struct mbuf *m, *m_tmp, *m_last, *m_cookie, *op_err; local
6631 for (m_tmp = op_err; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
6632 parameter_len += SCTP_BUF_LEN(m_tmp);
[all …]
Dsctputil.c6367 struct mbuf *m_tmp; local
6369 m_tmp = control->data;
6370 while (m_tmp) {
6371 cnt += SCTP_BUF_LEN(m_tmp);
6372 if (SCTP_BUF_NEXT(m_tmp) == NULL) {
6373 control->tail_mbuf = m_tmp;
6376 m_tmp = SCTP_BUF_NEXT(m_tmp);
/external/ltp/testcases/open_posix_testsuite/stress/threads/fork/
Ds-c1.c116 mes_t *m_cur, *m_tmp; in main() local
273 m_tmp = malloc(sizeof(mes_t)); in main()
275 if (m_tmp == NULL) { in main()
281 m_tmp->nprocess = nprocesses; in main()
282 m_tmp->next = NULL; in main()
283 m_tmp->_data = 0; in main()
284 m_cur->next = m_tmp; in main()
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/
Ds-c1.c122 mes_t *m_cur, *m_tmp; local
240 m_tmp = (mes_t *) malloc(sizeof(mes_t));
242 if (m_tmp == NULL) {
254 m_tmp->nsem = nsem;
255 m_tmp->next = NULL;
256 m_tmp->prev = m_cur;
257 m_cur->next = m_tmp;
259 m_cur = m_tmp;
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/
Ds-c1.c121 mes_t *m_cur, *m_tmp; in main() local
244 m_tmp = malloc(sizeof(mes_t)); in main()
246 if (m_tmp == NULL) { in main()
258 m_tmp->nsem = nsem; in main()
259 m_tmp->next = NULL; in main()
260 m_tmp->prev = m_cur; in main()
261 m_cur->next = m_tmp; in main()
263 m_cur = m_tmp; in main()
/external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/
Ds-c1.c152 mes_t *m_cur, *m_tmp; in main() local
301 m_tmp = malloc(sizeof(mes_t)); in main()
302 if (m_tmp == NULL) { in main()
307 m_tmp->nthreads = in main()
309 m_tmp->next = NULL; in main()
313 m_tmp-> in main()
316 m_cur->next = m_tmp; in main()
/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/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/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()