Home
last modified time | relevance | path

Searched refs:_MSIZE (Results 1 – 8 of 8) sorted by relevance

/xnu-11417.140.69/bsd/sys/
H A Dmbuf.h105 #define _MSIZE (1 << _MSIZESHIFT) /* size of an mbuf */ macro
107 #define _MSIZE 512 macro
116 #define NMBPCL (MCLBYTES / _MSIZE)
622 #define _MLEN (_MSIZE - sizeof(struct m_hdr)) /* normal data len */
665 #define _MLEN (_MSIZE - sizeof(struct m_hdr_common)) /* normal data len */
/xnu-11417.140.69/bsd/kern/
H A Duipc_socket2.c1066 mbcnt += _MSIZE; in sbcheck()
2456 sb->sb_mbcnt += _MSIZE; in sballoc()
2480 sb->sb_mbcnt -= _MSIZE; in sbfree()
H A Dkpi_mbuf.c1604 return _MSIZE; in mbuf_get_msize()
H A Dkern_control.c956 size_t grow = datasize - space + _MSIZE; in ctl_rcvbspace()
H A Duipc_mbuf.c660 u_int8_t sc_mbuf[(_MSIZE - _MHLEN) + sizeof(_m_ext_t)];
2036 m_maxsize(MC_MBUF) = m_size(MC_MBUF) = _MSIZE; in mbuf_table_init()
2322 _CASSERT(sizeof(struct mbuf) == _MSIZE); in mbinit()
/xnu-11417.140.69/bsd/netinet/
H A Dtcp_input.c751 tp->t_reassq_mbcnt -= _MSIZE + (q->tqe_m->m_flags & M_EXT) ? in tcp_reass()
765 tp->t_reassq_mbcnt += _MSIZE + (m->m_flags & M_EXT) ? m->m_ext.ext_size : 0; in tcp_reass()
803 tp->t_reassq_mbcnt -= _MSIZE + (q->tqe_m->m_flags & M_EXT) ? in tcp_reass()
H A Dtcp_subr.c1771 tp->t_reassq_mbcnt -= _MSIZE + (q->tqe_m->m_flags & M_EXT) ? in tcp_freeq()
/xnu-11417.140.69/bsd/net/
H A Dcontent_filter.c995 mbcnt += _MSIZE; in cfil_data_length()