Searched defs:m_tmp (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dpitch_filter.c164 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
/external/eigen/Eigen/src/Eigenvalues/
H A DEigenSolver.h113 EigenSolver() : m_eivec(), m_eivalues(), m_isInitialized(false), m_realSchur(), m_matT(), m_tmp() {}
128 m_tmp(size)
153 m_tmp(matrix.cols())
309 ColumnVectorType m_tmp; member in class:Eigen::EigenSolver
591 m_tmp.noalias() = m_eivec.leftCols(j+1) * m_matT.col(j).segment(0, j+1);
592 m_eivec.col(j) = m_tmp;
H A DGeneralizedEigenSolver.h117 GeneralizedEigenSolver() : m_eivec(), m_alphas(), m_betas(), m_isInitialized(false), m_realQZ(), m_matS(), m_tmp() {}
133 m_tmp(size)
156 m_tmp(A.cols())
275 ColumnVectorType m_tmp; member in class:Eigen::GeneralizedEigenSolver
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dpitch_filter.c164 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
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixPower.h329 MatrixType m_tmp; member in class:Eigen::MatrixPower
402 if (p<0) m_tmp = m_A.inverse();
403 else m_tmp = m_A;
408 res = m_tmp * res;
409 m_tmp *= m_tmp;
421 revertSchur(m_tmp, m_fT, m_U);
422 res = m_tmp * res;
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_auth.c1014 struct mbuf *m_tmp; local
1052 m_tmp = m;
1053 while ((m_tmp != NULL) && (m_offset >= (uint32_t) SCTP_BUF_LEN(m_tmp))) {
1054 m_offset -= SCTP_BUF_LEN(m_tmp);
1055 m_tmp = SCTP_BUF_NEXT(m_tmp);
1058 while (m_tmp != NULL) {
1059 if ((SCTP_BUF_NEXT(m_tmp) == NULL) && trailer) {
1060 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_
1617 struct mbuf *m_tmp; local
[all...]
H A Dsctputil.c5970 struct mbuf *m_tmp; local
5972 m_tmp = control->data;
5973 while (m_tmp) {
5974 cnt += SCTP_BUF_LEN(m_tmp);
5975 if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5976 control->tail_mbuf = m_tmp;
5979 m_tmp = SCTP_BUF_NEXT(m_tmp);
H A Dsctp_output.c5846 struct mbuf *m, *m_tmp, *m_last, *m_cookie, *op_err; local
6465 for (m_tmp = op_err; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
6466 parameter_len += SCTP_BUF_LEN(m_tmp);
6495 for (m_tmp = m_cookie; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
7895 struct mbuf *m_tmp; local
[all...]

Completed in 227 milliseconds