Home
last modified time | relevance | path

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

/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
Dsctp_auth.c1029 struct mbuf *m_tmp; local
1067 m_tmp = m;
1068 while ((m_tmp != NULL) && (m_offset >= (uint32_t) SCTP_BUF_LEN(m_tmp))) {
1069 m_offset -= SCTP_BUF_LEN(m_tmp);
1070 m_tmp = SCTP_BUF_NEXT(m_tmp);
1073 while (m_tmp != NULL) {
1074 if ((SCTP_BUF_NEXT(m_tmp) == NULL) && trailer) {
1075 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *) + m_offset,
1076 SCTP_BUF_LEN(m_tmp) - (trailer+m_offset));
1078 sctp_hmac_update(hmac_algo, &ctx, mtod(m_tmp, uint8_t *) + m_offset,
[all …]
Dsctp_output.c5675 struct mbuf *m, *m_at, *m_tmp, *m_cookie, *op_err, *mp_last; local
6285 for (m_tmp = m; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
6286 p_len += SCTP_BUF_LEN(m_tmp);
6287 if (SCTP_BUF_NEXT(m_tmp) == NULL) {
6301 SCTP_BUF_NEXT(m_tmp) = m_cookie;
6303 for (m_tmp = m_cookie; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
6304 p_len += SCTP_BUF_LEN(m_tmp);
6305 if (SCTP_BUF_NEXT(m_tmp) == NULL) {
6307 mp_last = m_tmp;
7705 struct mbuf *m_tmp; local
[all …]
Dsctputil.c5949 struct mbuf *m_tmp; local
5951 m_tmp = control->data;
5952 while (m_tmp) {
5953 cnt += SCTP_BUF_LEN(m_tmp);
5954 if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5955 control->tail_mbuf = m_tmp;
5958 m_tmp = SCTP_BUF_NEXT(m_tmp);
/external/eigen/Eigen/src/Eigenvalues/
DGeneralizedEigenSolver.h117 …lver() : m_eivec(), m_alphas(), m_betas(), m_isInitialized(false), m_realQZ(), m_matS(), m_tmp() {} in GeneralizedEigenSolver()
133 m_tmp(size) in GeneralizedEigenSolver()
156 m_tmp(A.cols())
275 ColumnVectorType m_tmp; variable
DEigenSolver.h113 …EigenSolver() : m_eivec(), m_eivalues(), m_isInitialized(false), m_realSchur(), m_matT(), m_tmp() … in EigenSolver()
128 m_tmp(size) in EigenSolver()
153 m_tmp(matrix.cols())
309 ColumnVectorType m_tmp; variable
591 m_tmp.noalias() = m_eivec.leftCols(j+1) * m_matT.col(j).segment(0, j+1); in doComputeEigenvectors()
592 m_eivec.col(j) = m_tmp; in doComputeEigenvectors()
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixPower.h329 MatrixType m_tmp; variable
402 if (p<0) m_tmp = m_A.inverse(); in computeIntPower()
403 else m_tmp = m_A; in computeIntPower()
408 res = m_tmp * res; in computeIntPower()
409 m_tmp *= m_tmp; in computeIntPower()
421 revertSchur(m_tmp, m_fT, m_U); in computeFracPower()
422 res = m_tmp * res; in computeFracPower()
/external/chromium_org/third_party/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()
/external/webrtc/src/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()