Home
last modified time | relevance | path

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

/xnu-12377.61.12/bsd/skywalk/packet/
H A Dpacket_copy.c1526 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_to_mbuf() local
1531 dp, tmp_len, partial); in pkt_copy_to_mbuf()
1533 _pkt_copy((baddr + copied_len), dp, tmp_len); in pkt_copy_to_mbuf()
1536 curr_m->m_len += tmp_len; in pkt_copy_to_mbuf()
1537 m->m_pkthdr.len += tmp_len; in pkt_copy_to_mbuf()
1538 copied_len += tmp_len; in pkt_copy_to_mbuf()
1539 remaining_len -= tmp_len; in pkt_copy_to_mbuf()
1751 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_multi_buflet_to_mbuf() local
1758 dp, tmp_len, TRUE, partial, NULL); in pkt_copy_multi_buflet_to_mbuf()
1761 dp, tmp_len, FALSE, 0, NULL); in pkt_copy_multi_buflet_to_mbuf()
[all …]
/xnu-12377.61.12/bsd/vfs/
H A Dvfs_lookup.c435 size_t tmp_len; in namei() local
441 tmp_len = strlen(realpath) + 1; in namei()
442 assert(tmp_len <= UINT_MAX); in namei()
443 ndp->ni_pathlen = (u_int)tmp_len; in namei()
/xnu-12377.61.12/bsd/kern/
H A Duipc_mbuf2.c181 int tmp_len = 0; in m_pulldown() local
182 if (os_add_overflow(off, len, &tmp_len)) { in m_pulldown()