Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:last_max_cwnd
(Results
1 - 6
of
6
) sorted by relevance
/kernel/linux/linux-5.10/net/ipv4/
H
A
D
tcp_bic.c
52
u32
last_max_cwnd
; /* last maximum snd_cwnd */
member
63
ca->
last_max_cwnd
= 0;
in bictcp_reset()
102
if (cwnd < ca->
last_max_cwnd
) {
in bictcp_update()
103
__u32 dist = (ca->
last_max_cwnd
- cwnd)
in bictcp_update()
117
if (cwnd < ca->
last_max_cwnd
+ BICTCP_B)
in bictcp_update()
120
else if (cwnd < ca->
last_max_cwnd
+ max_increment*(BICTCP_B-1))
in bictcp_update()
123
/ (cwnd - ca->
last_max_cwnd
);
in bictcp_update()
130
if (ca->
last_max_cwnd
== 0) {
in bictcp_update()
169
if (tp->snd_cwnd < ca->
last_max_cwnd
&& fast_convergence)
in bictcp_recalc_ssthresh()
170
ca->
last_max_cwnd
in bictcp_recalc_ssthresh()
[all...]
H
A
D
tcp_cubic.c
86
u32
last_max_cwnd
; /* last maximum snd_cwnd */
member
108
ca->
last_max_cwnd
= 0;
in bictcp_reset()
247
if (ca->
last_max_cwnd
<= cwnd) {
in bictcp_update()
255
* (ca->
last_max_cwnd
- cwnd));
in bictcp_update()
256
ca->bic_origin_point = ca->
last_max_cwnd
;
in bictcp_update()
303
if (ca->
last_max_cwnd
== 0 && ca->cnt > 20)
in bictcp_update()
356
if (tp->snd_cwnd < ca->
last_max_cwnd
&& fast_convergence)
in bictcp_recalc_ssthresh()
357
ca->
last_max_cwnd
= (tp->snd_cwnd * (BICTCP_BETA_SCALE + beta))
in bictcp_recalc_ssthresh()
360
ca->
last_max_cwnd
= tp->snd_cwnd;
in bictcp_recalc_ssthresh()
/kernel/linux/linux-6.6/net/ipv4/
H
A
D
tcp_bic.c
52
u32
last_max_cwnd
; /* last maximum snd_cwnd */
member
63
ca->
last_max_cwnd
= 0;
in bictcp_reset()
102
if (cwnd < ca->
last_max_cwnd
) {
in bictcp_update()
103
__u32 dist = (ca->
last_max_cwnd
- cwnd)
in bictcp_update()
117
if (cwnd < ca->
last_max_cwnd
+ BICTCP_B)
in bictcp_update()
120
else if (cwnd < ca->
last_max_cwnd
+ max_increment*(BICTCP_B-1))
in bictcp_update()
123
/ (cwnd - ca->
last_max_cwnd
);
in bictcp_update()
130
if (ca->
last_max_cwnd
== 0) {
in bictcp_update()
169
if (tcp_snd_cwnd(tp) < ca->
last_max_cwnd
&& fast_convergence)
in bictcp_recalc_ssthresh()
170
ca->
last_max_cwnd
in bictcp_recalc_ssthresh()
[all...]
H
A
D
tcp_cubic.c
88
u32
last_max_cwnd
; /* last maximum snd_cwnd */
member
240
if (ca->
last_max_cwnd
<= cwnd) {
in bictcp_update()
248
* (ca->
last_max_cwnd
- cwnd));
in bictcp_update()
249
ca->bic_origin_point = ca->
last_max_cwnd
;
in bictcp_update()
296
if (ca->
last_max_cwnd
== 0 && ca->cnt > 20)
in bictcp_update()
349
if (tcp_snd_cwnd(tp) < ca->
last_max_cwnd
&& fast_convergence)
in cubictcp_recalc_ssthresh()
350
ca->
last_max_cwnd
= (tcp_snd_cwnd(tp) * (BICTCP_BETA_SCALE + beta))
in cubictcp_recalc_ssthresh()
353
ca->
last_max_cwnd
= tcp_snd_cwnd(tp);
in cubictcp_recalc_ssthresh()
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/
H
A
D
bpf_cubic.c
75
__u32
last_max_cwnd
; /* last maximum snd_cwnd */
member
97
ca->
last_max_cwnd
= 0;
in bictcp_reset()
299
if (ca->
last_max_cwnd
<= cwnd) {
in bictcp_update()
307
* (ca->
last_max_cwnd
- cwnd));
in bictcp_update()
308
ca->bic_origin_point = ca->
last_max_cwnd
;
in bictcp_update()
355
if (ca->
last_max_cwnd
== 0 && ca->cnt > 20)
in bictcp_update()
414
if (tp->snd_cwnd < ca->
last_max_cwnd
&& fast_convergence)
in BPF_STRUCT_OPS()
415
ca->
last_max_cwnd
= (tp->snd_cwnd * (BICTCP_BETA_SCALE + beta))
in BPF_STRUCT_OPS()
418
ca->
last_max_cwnd
= tp->snd_cwnd;
in BPF_STRUCT_OPS()
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/
H
A
D
bpf_cubic.c
75
__u32
last_max_cwnd
; /* last maximum snd_cwnd */
member
97
ca->
last_max_cwnd
= 0;
in bictcp_reset()
293
if (ca->
last_max_cwnd
<= cwnd) {
in bictcp_update()
301
* (ca->
last_max_cwnd
- cwnd));
in bictcp_update()
302
ca->bic_origin_point = ca->
last_max_cwnd
;
in bictcp_update()
349
if (ca->
last_max_cwnd
== 0 && ca->cnt > 20)
in bictcp_update()
408
if (tp->snd_cwnd < ca->
last_max_cwnd
&& fast_convergence)
in BPF_STRUCT_OPS()
409
ca->
last_max_cwnd
= (tp->snd_cwnd * (BICTCP_BETA_SCALE + beta))
in BPF_STRUCT_OPS()
412
ca->
last_max_cwnd
= tp->snd_cwnd;
in BPF_STRUCT_OPS()
Completed in 5 milliseconds