Home
last modified time | relevance | path

Searched refs:SRtt (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
DTcp4Timer.c463 if ((Tcb->LossTimes >= TCP_FOLD_RTT) && (Tcb->SRtt != 0)) { in TcpBackoffRto()
464 Tcb->RttVar += Tcb->SRtt >> 2; in TcpBackoffRto()
465 Tcb->SRtt = 0; in TcpBackoffRto()
DTcp4Input.c212 if (Tcb->SRtt != 0) { in TcpComputeRtt()
214 Var = Tcb->SRtt - (Measure << TCP_RTT_SHIFT); in TcpComputeRtt()
221 Tcb->SRtt = 7 * (Tcb->SRtt >> 3) + Measure; in TcpComputeRtt()
227 Tcb->SRtt = Measure << TCP_RTT_SHIFT; in TcpComputeRtt()
231 Tcb->Rto = (Tcb->SRtt + MAX (8, 4 * Tcb->RttVar)) >> TCP_RTT_SHIFT; in TcpComputeRtt()
248 Tcb, Tcb->SRtt, Tcb->RttVar, Tcb->Rto)); in TcpComputeRtt()
DTcp4Proto.h225 UINT32 SRtt; ///< Smoothed RTT, scaled by 8 member
DTcp4Dispatcher.c436 Tcb->SRtt = 0; in Tcp4ConfigurePcb()
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
DTcpTimer.c128 if ((Tcb->LossTimes >= TCP_FOLD_RTT) && (Tcb->SRtt != 0)) { in TcpBackoffRto()
129 Tcb->RttVar += Tcb->SRtt >> 2; in TcpBackoffRto()
130 Tcb->SRtt = 0; in TcpBackoffRto()
DTcpInput.c232 if (Tcb->SRtt != 0) { in TcpComputeRtt()
234 Var = Tcb->SRtt - (Measure << TCP_RTT_SHIFT); in TcpComputeRtt()
241 Tcb->SRtt = 7 * (Tcb->SRtt >> 3) + Measure; in TcpComputeRtt()
247 Tcb->SRtt = Measure << TCP_RTT_SHIFT; in TcpComputeRtt()
251 Tcb->Rto = (Tcb->SRtt + MAX (8, 4 * Tcb->RttVar)) >> TCP_RTT_SHIFT; in TcpComputeRtt()
270 Tcb->SRtt, in TcpComputeRtt()
DTcpProto.h302 UINT32 SRtt; ///< Smoothed RTT, scaled by 8. member
DTcpDispatcher.c586 Tcb->SRtt = 0; in TcpConfigurePcb()