vrtt              114 net/ipv4/tcp_vegas.c 	u32 vrtt;
vrtt              120 net/ipv4/tcp_vegas.c 	vrtt = sample->rtt_us + 1;
vrtt              123 net/ipv4/tcp_vegas.c 	if (vrtt < vegas->baseRTT)
vrtt              124 net/ipv4/tcp_vegas.c 		vegas->baseRTT = vrtt;
vrtt              129 net/ipv4/tcp_vegas.c 	vegas->minRTT = min(vegas->minRTT, vrtt);
vrtt               77 net/ipv4/tcp_veno.c 	u32 vrtt;
vrtt               83 net/ipv4/tcp_veno.c 	vrtt = sample->rtt_us + 1;
vrtt               86 net/ipv4/tcp_veno.c 	if (vrtt < veno->basertt)
vrtt               87 net/ipv4/tcp_veno.c 		veno->basertt = vrtt;
vrtt               92 net/ipv4/tcp_veno.c 	veno->minrtt = min(veno->minrtt, vrtt);