HomeSort by relevance Sort by last modified time
    Searched defs:M_EXT (Results 1 - 3 of 3) sorted by null

  /external/qemu/slirp/
mbuf.h 52 * If the data is too large, the M_EXT is used, and a larger block
53 * is alloced. Therefore, m_free[m] must check for M_EXT and if set
54 * free the m_ext. This is inefficient memory-wise, but who cares.
76 #define M_ROOM(m) ((m->m_flags & M_EXT)? \
77 (((m)->m_ext + (m)->m_size) - (m)->m_data) \
104 #define m_ext M_dat.m_ext_ macro
113 #define M_EXT 0x01 /* m_ext points to more (malloced) data */
  /external/qemu/slirp-android/
mbuf.h 52 * If the data is too large, the M_EXT is used, and a larger block
53 * is alloced. Therefore, m_free[m] must check for M_EXT and if set
54 * free the m_ext. This is inefficient memory-wise, but who cares.
76 #define M_ROOM(m) ((m->m_flags & M_EXT)? \
77 (((m)->m_ext + (m)->m_size) - (m)->m_data) \
104 #define m_ext M_dat.m_ext_ macro
113 #define M_EXT 0x01 /* m_ext points to more (malloced) data */
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_mbuf.h 213 * Description of external storage mapped into mbuf; valid only if M_EXT is
216 struct m_ext { struct
237 struct m_ext MH_ext; /* M_EXT set */
241 char M_databuf[MLEN]; /* !M_PKTHDR, !M_EXT */
253 #define m_ext M_dat.MH.MH_dat.MH_ext macro
261 #define M_EXT 0x0001 /* has associated external storage */
359 * whether M_EXT is set).
362 (!(((m)->m_flags & M_EXT)) || \
363 (*((m)->m_ext.ref_cnt) == 1)) )
    [all...]

Completed in 323 milliseconds