Home | History | Annotate | Download | only in netinet

Lines Matching refs:_t

283 	struct mbuf *_t;						\
288 _t = m_pulldown((m), (off), (len), &_tmp); \
289 if (_t) { \
290 if (_t->m_len < _tmp + (len)) \
292 (val) = (typ)(mtod(_t, char *) + _tmp); \
302 struct mbuf *_t; \
306 _t = m_pulldown((m), (off), (len), NULL); \
307 if (_t) { \
308 if (_t->m_len < (len)) \
310 (val) = (typ)mtod(_t, void *); \