Lines Matching refs:skip
54 m_makespace(struct mbuf *m0, int skip, int hlen, int *off) in m_makespace() argument
62 for (m = m0; m && skip > m->m_len; m = m->m_next) in m_makespace()
63 skip -= m->m_len; in m_makespace()
74 remain = m->m_len - skip; /* data to move */ in m_makespace()
75 if (remain > skip && in m_makespace()
86 bcopy(mtodo(m, hlen), mtod(m, caddr_t), skip); in m_makespace()
88 *off = skip; in m_makespace()
113 memcpy(n->m_data, mtod(m, char *) + skip + done, len); in m_makespace()
120 m->m_len = skip + hlen; in m_makespace()
121 *off = skip; in m_makespace()
142 m->m_len = skip; in m_makespace()
153 bcopy(mtod(m, caddr_t) + skip, in m_makespace()
154 mtod(m, caddr_t) + skip + hlen, remain); in m_makespace()
156 *off = skip; in m_makespace()
240 m_striphdr(struct mbuf *m, int skip, int hlen) in m_striphdr() argument
246 m1 = m_getptr(m, skip, &roff); in m_striphdr()