Home
last modified time | relevance | path

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

/xnu-10063.141.1/bsd/skywalk/packet/
H A Dpacket_copy.c1453 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_to_mbuf() local
1458 dp, tmp_len, partial); in pkt_copy_to_mbuf()
1460 _pkt_copy((baddr + copied_len), dp, tmp_len); in pkt_copy_to_mbuf()
1463 curr_m->m_len += tmp_len; in pkt_copy_to_mbuf()
1464 m->m_pkthdr.len += tmp_len; in pkt_copy_to_mbuf()
1465 copied_len += tmp_len; in pkt_copy_to_mbuf()
1466 remaining_len -= tmp_len; in pkt_copy_to_mbuf()
1666 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_multi_buflet_to_mbuf() local
1673 dp, tmp_len, TRUE, partial, NULL); in pkt_copy_multi_buflet_to_mbuf()
1676 dp, tmp_len, FALSE, 0, NULL); in pkt_copy_multi_buflet_to_mbuf()
[all …]
/xnu-10063.141.1/bsd/vfs/
H A Dvfs_lookup.c308 size_t tmp_len; in namei() local
314 tmp_len = strlen(realpath) + 1; in namei()
315 assert(tmp_len <= UINT_MAX); in namei()
316 ndp->ni_pathlen = (u_int)tmp_len; in namei()
/xnu-10063.141.1/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()