Home | History | Annotate | Download | only in imx

Lines Matching defs:mt

1419 	struct mbuf *m, *m0, *mt, *p, *x;
1434 mt = p = NULL;
1502 if (mt == NULL) {
1503 mt = m;
1504 while (mt->m_len == 0) {
1505 mt = mt->m_next;
1506 if (mt == NULL) {
1512 /* mt = 1st mbuf, x = 2nd mbuf */
1513 x = mt->m_next;
1514 while (mt->m_len < MINBUFSIZE) {
1525 } else if ((mt->m_len + chiplen) <
1539 (M_TRAILINGSPACE(mt) < chiplen)) {
1545 ap = M_BUFADDR(mt);
1547 memcpy(ap, mt->m_data,
1548 mt->m_len);
1549 mt->m_data = ap;
1553 (M_TRAILINGSPACE(mt) >= chiplen)) {
1554 memcpy(mt->m_data + mt->m_len,
1556 mt->m_len += chiplen;
1565 mt = m;