Home
last modified time | relevance | path

Searched refs:M_TAG_ALIGN (Results 1 – 3 of 3) sorted by relevance

/xnu-12377.41.6/bsd/kern/
H A Duipc_mbuf2.c464 if (M_TAG_ALIGN(len) + sizeof(struct m_taghdr) <= MLEN) { in m_tag_alloc_mbuf()
481 m->m_len += M_TAG_ALIGN(len); in m_tag_alloc_mbuf()
635 if (M_TAG_ALIGN(p->m_tag_len) + in m_tag_create_mbuf()
650 if (M_TAG_ALIGN(len) <= MLEN - m->m_len) { in m_tag_create_mbuf()
655 m->m_len += M_TAG_ALIGN(len); in m_tag_create_mbuf()
681 if (M_TAG_ALIGN(t->m_tag_len) + sizeof(struct m_taghdr) <= MLEN) { in m_tag_free_mbuf()
H A Dkpi_mbuf.c1291 M_TAG_ALIGN(sizeof (struct m_drvaux_tag)), sizeof (uint64_t))
/xnu-12377.41.6/bsd/sys/
H A Dmbuf.h170 #define M_TAG_ALIGN(len) \ macro