Searched refs:MCLBYTES (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Arm/machine/
H A Dparam.h110 * MCLBYTES must be no larger than NBPG (the software page size), and,
112 * clusters (MAPPED_MBUFS), MCLBYTES must also be an integral multiple
122 #define MCLBYTES (1 << MCLSHIFT) /* size of a m_buf cluster */ macro
125 #define NMBCLUSTERS_MAX (0x2000000 / MCLBYTES) /* Limit to 64MB for clusters */
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ia32/machine/
H A Dparam.h122 * MCLBYTES must be no larger than NBPG (the software page size), and,
124 * clusters (MAPPED_MBUFS), MCLBYTES must also be an integral multiple
134 #define MCLBYTES (1 << MCLSHIFT) /* size of a m_buf cluster */ macro
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/
H A Dparam.h101 * MCLBYTES must be no larger than NBPG (the software page size), and,
103 * clusters (MAPPED_MBUFS), MCLBYTES must also be an integral multiple
113 #define MCLBYTES (1 << MCLSHIFT) /* size of a m_buf cluster */ macro
/vbox/src/VBox/Devices/Network/slirp/
H A Dtcp_output.c394 size = MCLBYTES;
396 size = MCLBYTES;
397 else if ((len + hdrlen + ETH_HLEN) < MCLBYTES)
398 size = MCLBYTES;
458 size = MCLBYTES;
460 else if ((hdrlen + ETH_HLEN) < MCLBYTES)
462 size = MCLBYTES;
H A Dslirp.h475 return MCLBYTES;
476 else if (if_mtu < MCLBYTES)
477 return MCLBYTES;
H A Dmisc.c496 size_t size = MCLBYTES;
499 if (cbMin < MCLBYTES)
500 size = MCLBYTES;
/vbox/src/VBox/Devices/Network/slirp/bsd/kern/
H A Dkern_mbuf.c300 zone_clust = uma_zcreate(MBUF_CLUSTER_MEM_NAME, MCLBYTES,
318 zone_clust = uma_zcreate(MBUF_CLUSTER_MEM_NAME, MCLBYTES,
412 mbstat.m_mclbytes = MCLBYTES;
572 KASSERT(m->m_ext.ext_size == MCLBYTES, ("%s: ext_size != MCLBYTES", __func__));
576 trash_dtor(m->m_ext.ext_buf, MCLBYTES, arg);
620 case MCLBYTES:
624 #if MJUMPAGESIZE != MCLBYTES
706 trash_init(m->m_ext.ext_buf, MCLBYTES, how);
728 trash_fini(m->m_ext.ext_buf, MCLBYTES);
[all...]
H A Duipc_mbuf2.c117 if (len > MCLBYTES) {
332 if (len > MCLBYTES)
H A Duipc_mbuf.c126 if (len > MCLBYTES)
143 if (len > MCLBYTES)
963 nsize = MCLBYTES;
1381 len = MCLBYTES;
1399 len = MCLBYTES;
1725 if (length > MCLBYTES)
1726 length = MCLBYTES;
1845 n->m_len + n2->m_len < MCLBYTES) {
1941 if (fraglen > MCLBYTES)
1942 fraglen = MCLBYTES;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/X64/machine/
H A Dparam.h64 * MCLBYTES must be no larger than NBPG (the software page size), and,
66 * clusters (MAPPED_MBUFS), MCLBYTES must also be an integral multiple
76 #define MCLBYTES (1 << MCLSHIFT) /* size of a m_buf cluster */ macro
/vbox/src/VBox/Devices/Network/slirp/bsd/sys/
H A Dmbuf.h73 * MCLBYTES must be no larger than PAGE_SIZE.
83 # ifndef MCLBYTES
84 # define MCLBYTES (1 << MCLSHIFT) /* size of an mbuf cluster */ macro
85 # endif /*MCLBYTES*/
94 * An mbuf may add a single "mbuf cluster" of size MCLBYTES (also in
456 case MCLBYTES:
459 #if MJUMPAGESIZE != MCLBYTES
490 case MCLBYTES:
493 #if MJUMPAGESIZE != MCLBYTES
576 * For size it takes MCLBYTES, MJUMPAGESIZ
[all...]
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias.c1714 if (len <= MCLBYTES - RESERVE) {

Completed in 92 milliseconds