Home
last modified time | relevance | path

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

/xnu-11215.1.10/bsd/skywalk/packet/
H A Dpacket_copy.c1485 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_to_mbuf() local
1490 dp, tmp_len, partial); in pkt_copy_to_mbuf()
1492 _pkt_copy((baddr + copied_len), dp, tmp_len); in pkt_copy_to_mbuf()
1495 curr_m->m_len += tmp_len; in pkt_copy_to_mbuf()
1496 m->m_pkthdr.len += tmp_len; in pkt_copy_to_mbuf()
1497 copied_len += tmp_len; in pkt_copy_to_mbuf()
1498 remaining_len -= tmp_len; in pkt_copy_to_mbuf()
1698 uint32_t tmp_len = MIN(remaining_len, in pkt_copy_multi_buflet_to_mbuf() local
1705 dp, tmp_len, TRUE, partial, NULL); in pkt_copy_multi_buflet_to_mbuf()
1708 dp, tmp_len, FALSE, 0, NULL); in pkt_copy_multi_buflet_to_mbuf()
[all …]
/xnu-11215.1.10/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-11215.1.10/bsd/kern/
H A Duipc_mbuf2.c177 int tmp_len = 0; in m_pulldown() local
178 if (os_add_overflow(off, len, &tmp_len)) { in m_pulldown()