Searched refs:CWnd (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Input.c76 Tcb->CWnd = Tcb->Ssthresh + 3 * Tcb->SndMss;
96 Tcb->CWnd += Tcb->SndMss;
114 Tcb->CWnd = MIN (Tcb->Ssthresh, FlightSize + Tcb->SndMss);
125 // , then deflate the CWnd
131 // Deflate the CWnd by the amount of new data
133 // is ACKed, add back SMSS byte to CWnd after
140 Tcb->CWnd -= Acked;
1120 if (Tcb->CWnd < Tcb->Ssthresh) {
1122 Tcb->CWnd += Tcb->SndMss;
1125 Tcb->CWnd
[all...]
H A DTcp4Proto.h233 UINT32 CWnd; ///< Sender's congestion window member in struct:_TCP_CB
H A DTcp4Timer.c168 Tcb->CWnd = Tcb->SndMss;
H A DTcp4Dispatcher.c414 Tcb->CWnd = Tcb->SndMss;
H A DTcp4Output.c205 if (TCP_SEQ_GT (Limit, Tcb->SndUna + Tcb->CWnd)) {
207 Limit = Tcb->SndUna + Tcb->CWnd;
H A DTcp4Misc.c132 Tcb->CWnd = Tcb->SndMss;
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DTcpInput.c74 Tcb->CWnd = Tcb->Ssthresh + 3 * Tcb->SndMss;
98 Tcb->CWnd += Tcb->SndMss;
120 Tcb->CWnd = MIN (Tcb->Ssthresh, FlightSize + Tcb->SndMss);
135 // , then deflate the CWnd
141 // Deflate the CWnd by the amount of new data
143 // is ACKed, add back SMSS byte to CWnd after
150 Tcb->CWnd -= Acked;
1227 if (Tcb->CWnd < Tcb->Ssthresh) {
1229 Tcb->CWnd += Tcb->SndMss;
1232 Tcb->CWnd
[all...]
H A DTcpProto.h310 UINT32 CWnd; ///< Sender's congestion window. member in struct:_TCP_CONTROL_BLOCK
H A DTcpTimer.c209 Tcb->CWnd = Tcb->SndMss;
H A DTcpOutput.c200 if (TCP_SEQ_GT (Limit, Tcb->SndUna + Tcb->CWnd)) {
202 Limit = Tcb->SndUna + Tcb->CWnd;
H A DTcpDispatcher.c541 Tcb->CWnd = Tcb->SndMss;
H A DTcpMisc.c137 Tcb->CWnd = Tcb->SndMss;

Completed in 2254 milliseconds