OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_ext
(Results
1 - 2
of
2
) 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 */
Completed in 575 milliseconds