Lines Matching defs:m
108 #define mtod(m, t) ((t)((m)->m_data)) argument
109 #define mtodo(m, o) ((void *)(((m)->m_data) + (o))) argument
351 #define M_HASHTYPE_CLEAR(m) ((m)->m_pkthdr.rsstype = 0) argument
352 #define M_HASHTYPE_GET(m) ((m)->m_pkthdr.rsstype) argument
353 #define M_HASHTYPE_SET(m, v) ((m)->m_pkthdr.rsstype = (v)) argument
354 #define M_HASHTYPE_TEST(m, v) (M_HASHTYPE_GET(m) == (v)) argument
355 #define M_HASHTYPE_ISHASH(m) (M_HASHTYPE_GET(m) & M_HASHTYPE_HASHPROP) argument
651 m_extaddref(struct mbuf *m, caddr_t buf, u_int size, u_int *ref_cnt, in m_extaddref()
705 m_init(struct mbuf *m, int how, short type, int flags) in m_init()
727 struct mbuf *m; in m_get() local
740 struct mbuf *m; in m_gethdr() local
753 struct mbuf *m; in m_getcl() local
769 m_cljset(struct mbuf *m, void *cl, int type) in m_cljset()
804 m_chtype(struct mbuf *m, short new_type) in m_chtype()
811 m_clrprotoflags(struct mbuf *m) in m_clrprotoflags()
821 m_last(struct mbuf *m) in m_last()
830 m_extrefcnt(struct mbuf *m) in m_extrefcnt()
844 #define MGET(m, how, type) ((m) = m_get((how), (type))) argument
845 #define MGETHDR(m, how, type) ((m) = m_gethdr((how), (type))) argument
846 #define MCLGET(m, how) m_clget((m), (how)) argument
847 #define MEXTADD(m, buf, size, free, arg1, arg2, flags, type) \ argument
850 #define m_getm(m, len, how, type) \ argument
858 #define M_WRITABLE(m) (!((m)->m_flags & M_RDONLY) && \ argument
863 #define M_ASSERTPKTHDR(m) \ argument
872 #define M_ASSERTVALID(m) \ argument
880 #define M_START(m) \ argument
889 #define M_SIZE(m) \ argument
905 m_align(struct mbuf *m, int len) in m_align()
918 #define M_ALIGN(m, len) m_align(m, len) argument
919 #define MH_ALIGN(m, len) m_align(m, len) argument
920 #define MEXT_ALIGN(m, len) m_align(m, len) argument
933 #define M_LEADINGSPACE(m) \ argument
946 #define M_TRAILINGSPACE(m) \ argument
955 #define M_PREPEND(m, plen, how) do { \ argument
976 #define MCHTYPE(m, t) m_chtype((m), (t)) argument
982 #define m_copy(m, o, l) m_copym((m), (o), (l), M_NOWAIT) argument
1084 m_tag_init(struct mbuf *m) in m_tag_init()
1119 m_tag_first(struct mbuf *m) in m_tag_first()
1139 m_tag_prepend(struct mbuf *m, struct m_tag *t) in m_tag_prepend()
1149 m_tag_unlink(struct mbuf *m, struct m_tag *t) in m_tag_unlink()
1165 m_tag_find(struct mbuf *m, int type, struct m_tag *start) in m_tag_find()
1172 m_free(struct mbuf *m) in m_free()
1187 rt_m_getfib(struct mbuf *m) in rt_m_getfib()
1211 #define M_PROFILE(m) m_profile(m) argument
1213 #define M_PROFILE(m) argument
1234 struct mbuf *m; in mbufq_flush() local
1245 struct mbuf *m, *n; in mbufq_drain() local
1283 mbufq_enqueue(struct mbufq *mq, struct mbuf *m) in mbufq_enqueue()
1296 struct mbuf *m; in mbufq_dequeue() local
1308 mbufq_prepend(struct mbufq *mq, struct mbuf *m) in mbufq_prepend()