Home
last modified time | relevance | path

Searched refs:tmp_len (Results 1 – 3 of 3) sorted by relevance

/xnu-8796.141.3/bsd/skywalk/packet/
H A Dpacket_copy.c1373 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_to_mbuf() local
1378 dp, tmp_len, partial); in pkt_copy_to_mbuf()
1380 _pkt_copy((baddr + copied_len), dp, tmp_len); in pkt_copy_to_mbuf()
1383 curr_m->m_len += tmp_len; in pkt_copy_to_mbuf()
1384 m->m_pkthdr.len += tmp_len; in pkt_copy_to_mbuf()
1385 copied_len += tmp_len; in pkt_copy_to_mbuf()
1386 remaining_len -= tmp_len; in pkt_copy_to_mbuf()
1573 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_multi_buflet_to_mbuf() local
1580 dp, tmp_len, TRUE, partial, NULL); in pkt_copy_multi_buflet_to_mbuf()
1583 dp, tmp_len, FALSE, 0, NULL); in pkt_copy_multi_buflet_to_mbuf()
[all …]
/xnu-8796.141.3/bsd/kern/
H A Duipc_mbuf2.c141 int tmp_len = 0; in m_pulldown() local
142 if (os_add_overflow(off, len, &tmp_len)) { in m_pulldown()
/xnu-8796.141.3/bsd/vfs/
H A Dvfs_lookup.c315 size_t tmp_len; in namei() local
321 tmp_len = strlen(realpath) + 1; in namei()
322 assert(tmp_len <= UINT_MAX); in namei()
323 ndp->ni_pathlen = (u_int)tmp_len; in namei()