gonzui


Format: Advanced Search

SearchGoogle itResults 11 - 16 of 16 for funcall:min from t2ex (0.01 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/netinet/if_arp.c - 55.2KB - 1,677 lines
786:                 memcpy(desten, CLLADDR(sdl),
787:                     min(sdl->sdl_alen, ifp->if_addrlen));
788:                 rt->rt_pksent = time_second; /* Time for last pkt sent */
bsd_source/t2ex/network/net/src_bsd/netinet/ip_icmp.c - 44.0KB - 1,314 lines
334:          */
335:         icmplen = oiplen + min(icmpreturndatabytes,
336:             ntohs(oip->ip_len) - oiplen);
More results from ip_icmp.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_congctl.c - 25.6KB - 776 lines
470:          */
471:         win = min(tp->snd_wnd, tp->snd_cwnd) / 2 / tp->t_segsz;
472:         if (win < 2)
More results from tcp_congctl.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_input.c - 167.0KB - 4,503 lines
1844:                                                 newsize =
1845:                                                     min(so->so_rcv.sb_hiwat +
1846:                                                     tcp_autorcvbuf_inc,
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_output.c - 62.9KB - 1,704 lines
392:          */
393:         *txsegsizep = min(tp->t_peermss - optlen, size);
394:         /*
More results from tcp_output.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_var.h - 41.5KB - 925 lines
551: #define TCP_INITIAL_WINDOW(iw, segsz) \
552:         (((iw) == 0) ? (min(4 * (segsz), max(2 * (segsz), 4380))) : \
553:          ((segsz) * (iw)))