Lines Matching refs:skip
56 m_makespace(struct mbuf *m0, int skip, int hlen, int *off) in m_makespace() argument
64 for (m = m0; m && skip > m->m_len; m = m->m_next) in m_makespace()
65 skip -= m->m_len; in m_makespace()
76 remain = m->m_len - skip; /* data to move */ in m_makespace()
77 if (remain > skip && in m_makespace()
88 bcopy(mtodo(m, hlen), mtod(m, caddr_t), skip); in m_makespace()
90 *off = skip; in m_makespace()
115 memcpy(n->m_data, mtod(m, char *) + skip + done, len); in m_makespace()
122 m->m_len = skip + hlen; in m_makespace()
123 *off = skip; in m_makespace()
144 m->m_len = skip; in m_makespace()
155 bcopy(mtod(m, caddr_t) + skip, in m_makespace()
156 mtod(m, caddr_t) + skip + hlen, remain); in m_makespace()
158 *off = skip; in m_makespace()
242 m_striphdr(struct mbuf *m, int skip, int hlen) in m_striphdr() argument
248 m1 = m_getptr(m, skip, &roff); in m_striphdr()