Searched refs:dstm (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/sys/dev/safe/
H A Dsafe.c1584 * Copy all data past offset from srcm to dstm.
1587 safe_mcopy(struct mbuf *srcm, struct mbuf *dstm, u_int offset) argument
1609 if (dstm->m_len > j)
1611 j -= dstm->m_len;
1612 dstm = dstm->m_next;
1613 if (dstm == NULL)
1616 dptr = mtod(dstm, caddr_t) + j;
1617 dlen = dstm->m_len - j;
1634 dstm
[all...]
/freebsd-11-stable/sys/dev/ubsec/
H A Dubsec.c1615 ubsec_mcopy(struct mbuf *srcm, struct mbuf *dstm, int hoffset, int toffset) argument
1623 dptr = dstm->m_data;
1624 dlen = dstm->m_len;
1642 dstm = dstm->m_next;
1643 if (dstm == NULL)
1645 dptr = dstm->m_data;
1646 dlen = dstm->m_len;

Completed in 61 milliseconds