Lines Matching refs:m_len
57 s16 m_len; /* Please see man pages for details */ member
108 return pMbuf_->m_capacity - (pMbuf_->m_top + pMbuf_->m_len); in nnnetOslMbuf_trailingspace()
116 pMbuf_->m_len += len; in nnnetOslMbuf_prepend()
144 if (pMbuf_->m_top + pMbuf_->m_len + len > pMbuf_->m_capacity) in nnnetOslMbuf_expand()
150 pMbuf_->m_len += len; in nnnetOslMbuf_expand()
156 NN_TASSERT_(pMbuf_->m_len == 0 && pMbuf_->m_top + len <= pMbuf_->m_capacity); in nnnetOslMbuf_reserve()
254 m_len = (len > m_capacity) ? m_capacity : len; in SetLengthTrimed()
255 return m_len; in SetLengthTrimed()
260 NN_TASSERT_(m_len <= m_capacity); in GetLength()
261 return m_len; in GetLength()
267 return m_len = len; in SetLength()
271 { return m_len; } in Length()
315 return m_capacity - (m_top + m_len); in GetTrailingSpace()