Searched refs:MSIZE (Results 1 - 10 of 10) sorted by relevance

/xnu-2422.115.4/tools/lldbmacros/
H A Dmbufdefines.py6 MSIZE = 256 variable
H A Dmbufs.py343 if (csize == MSIZE):
368 if (csize == (MSIZE + MCLBYTES)):
389 if (csize == (MSIZE + NBPG)):
410 if (csize == (MSIZE + M16KCLBYTES)):
/xnu-2422.115.4/bsd/i386/
H A Dparam.h105 #define MSIZE (1 << MSIZESHIFT) /* size of an mbuf */ macro
/xnu-2422.115.4/bsd/kern/
H A Dkern_malloc.c323 { MSIZE, KMZ_CREATEZONE, FALSE }, /* 1 M_MBUF */
H A Duipc_socket2.c654 if ((u_quad_t)cc > (u_quad_t)sb_max * MCLBYTES / (MSIZE + MCLBYTES))
802 mbcnt += MSIZE;
2214 sb->sb_mbcnt += MSIZE;
2234 sb->sb_mbcnt -= MSIZE;
H A Duipc_mbuf.c112 * This is a cache of rudimentary objects of MSIZE in size; each
444 u_int8_t sc_mbuf[(MSIZE - _MHLEN) + sizeof (_m_ext_t)];
1241 m_maxsize(MC_MBUF) = m_size(MC_MBUF) = MSIZE;
5949 return ((struct mbuf *)((uintptr_t)(x) & ~(MSIZE-1)));
/xnu-2422.115.4/bsd/sys/
H A Dmbuf.h91 * Mbufs are of a single size, MSIZE (machine/param.h), which
103 #define _MLEN (MSIZE - sizeof(struct m_hdr)) /* normal data len */
/xnu-2422.115.4/bsd/netinet/
H A Dtcp_usrreq.c2138 u_quad_t sb_effective_max = (sb_max / (MSIZE+MCLBYTES)) * MCLBYTES;
H A Dudp_usrreq.c1701 u_quad_t sb_effective_max = (sb_max/(MSIZE+MCLBYTES)) * MCLBYTES;
H A Dtcp_input.c955 /* Calculate the host level space limit in terms of MSIZE buffers.
4862 sb_max_corrected = (sb_max * (u_int64_t)MCLBYTES) / (MSIZE + MCLBYTES);

Completed in 80 milliseconds