gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 5 of 5 for funcall:max (0.08 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/kern/uipc_mbuf.c - 57.8KB - 1,910 lines
1064:         do {
1065:                 count = min(min(max(len, max_protohdr), space), n->m_len);
1066:                 memcpy(mtod(m, char *) + m->m_len, mtod(n, void *),
More results from uipc_mbuf.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_input.c - 167.0KB - 4,503 lines
3255:         TCPT_RANGESET(tp->t_rxtcur, TCP_REXMTVAL(tp),
3256:             max(tp->t_rttmin, rtt + 2), TCPTV_REXMTMAX);
3257: 
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_output.c - 62.9KB - 1,704 lines
414:                 if (*txsegsizep < tp->t_segsz) {
415:                         tp->snd_cwnd = max((tp->snd_cwnd / tp->t_segsz)
416:                                            * *txsegsizep, *txsegsizep);
More results from tcp_output.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_subr.c - 84.9KB - 2,586 lines
2075:                 case AF_INET:
2076:                         mss = max(in_maxmtu, mss);
2077:                         break;
More results from tcp_subr.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)))