Searched refs:nfb (Results 1 – 5 of 5) sorted by relevance
672 u16_t nfb; in ip6_frag() local688 nfb = (mtu - (IP6_HLEN + IP6_FRAG_HLEN)) & IP6_FRAG_OFFSET_MASK; in ip6_frag()691 last = (left <= nfb); in ip6_frag()694 cop = last ? left : nfb; in ip6_frag()
679 u16_t nfb; in ip_frag() local720 nfb = (mtu - IP_HLEN) / 8; in ip_frag()732 cop = last ? left : nfb * 8; in ip_frag()855 ofo += nfb; in ip_frag()
728 const u16_t nfb = (netif->mtu - IP_HLEN) / 8; in ip4_frag() local748 fragsize = LWIP_MIN(left, nfb * 8); in ip4_frag()854 ofo += nfb; in ip4_frag()
750 const u16_t nfb = (u16_t)((netif->mtu - IP_HLEN) / 8); in ip4_frag() local776 fragsize = LWIP_MIN(left, (u16_t)(nfb * 8)); in ip4_frag()884 ofo = (u16_t)(ofo + nfb); in ip4_frag()
734 const u16_t nfb = (u16_t)((mtu - (IP6_HLEN + IP6_FRAG_HLEN)) & IP6_FRAG_OFFSET_MASK); in ip6_frag() local748 last = (left <= nfb); in ip6_frag()751 cop = last ? left : nfb; in ip6_frag()
Completed in 17 milliseconds