Home
last modified time | relevance | path

Searched refs:MSIZE (Results 1 – 14 of 14) sorted by relevance

/xnu-8792.41.9/tools/lldbmacros/
H A Dmbufdefines.py9 MSIZE = 256 variable
H A Dmbufs.py608 if (csize == MSIZE):
633 if (csize == (MSIZE + MCLBYTES)):
654 if (csize == (MSIZE + MBIGCLBYTES)):
675 if (csize == (MSIZE + M16KCLBYTES)):
/xnu-8792.41.9/bsd/i386/
H A Dparam.h107 #define MSIZE (1 << MSIZESHIFT) /* size of an mbuf */ macro
/xnu-8792.41.9/bsd/arm/
H A Dparam.h83 #define MSIZE (1 << MSIZESHIFT) /* size of an mbuf */ macro
/xnu-8792.41.9/bsd/kern/
H A Duipc_socket2.c766 uint64_t maxcc = (uint64_t)sb_max * MCLBYTES / (MSIZE + MCLBYTES); in soreserve()
819 if ((u_quad_t)cc > (u_quad_t)sb_max * MCLBYTES / (MSIZE + MCLBYTES) || in sbreserve()
1038 mbcnt += MSIZE; in sbcheck()
2396 sb->sb_mbcnt += MSIZE; in sballoc()
2429 sb->sb_mbcnt -= MSIZE; in sbfree()
H A Dkern_control.c509 sbmaxsize = (u_quad_t)sb_max * MCLBYTES / (MSIZE + MCLBYTES); in ctl_setup_kctl()
949 size_t grow = datasize - space + MSIZE; in ctl_rcvbspace()
H A Duipc_mbuf.c478 u_int8_t sc_mbuf[(MSIZE - _MHLEN) + sizeof(_m_ext_t)];
1385 m_maxsize(MC_MBUF) = m_size(MC_MBUF) = MSIZE; in mbuf_table_init()
5168 if (MTOD(n, char *) + n->m_len > ((char *)n) + MSIZE) {
5299 if (MTOD(n, char *) + n->m_len > ((char *)n) + MSIZE) {
6723 return (struct mbuf *)((uintptr_t)(x) & ~(MSIZE - 1));
/xnu-8792.41.9/bsd/sys/
H A Dmbuf.h109 #define _MLEN (MSIZE - sizeof(struct m_hdr)) /* normal data len */
/xnu-8792.41.9/bsd/netinet/
H A Dtcp_input.c748 tp->t_reassq_mbcnt -= MSIZE + (q->tqe_m->m_flags & M_EXT) ? in tcp_reass()
762 tp->t_reassq_mbcnt += MSIZE + (m->m_flags & M_EXT) ? m->m_ext.ext_size : 0; in tcp_reass()
800 tp->t_reassq_mbcnt -= MSIZE + (q->tqe_m->m_flags & M_EXT) ? in tcp_reass()
6614 sb_max_corrected = (sb_max * (u_int64_t)MCLBYTES) / (MSIZE + MCLBYTES); in tcp_mss()
H A Dudp_usrreq.c2153 u_quad_t sb_effective_max = (sb_max / (MSIZE + MCLBYTES)) * MCLBYTES; in sysctl_udp_sospace()
H A Dtcp_usrreq.c2938 u_quad_t sb_effective_max = (sb_max / (MSIZE + MCLBYTES)) * MCLBYTES; in sysctl_tcp_sospace()
H A Dtcp_subr.c1721 tp->t_reassq_mbcnt -= MSIZE + (q->tqe_m->m_flags & M_EXT) ? in tcp_freeq()
/xnu-8792.41.9/bsd/nfs/
H A Dnfs_syscalls.c687 sbmaxsize = sb_max * MCLBYTES / (MSIZE + MCLBYTES); in nfssvc_addsock()
/xnu-8792.41.9/bsd/net/
H A Dcontent_filter.c954 mbcnt += MSIZE; in cfil_data_length()