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:BICTCP_BETA_SCALE
(Results
1 - 6
of
6
) sorted by relevance
/kernel/linux/linux-5.10/net/ipv4/
H
A
D
tcp_bic.c
21
#define
BICTCP_BETA_SCALE
1024 /* Scale factor beta calculation
macro
32
static int beta = 819; /* = 819/1024 (
BICTCP_BETA_SCALE
) */
170
ca->last_max_cwnd = (tp->snd_cwnd * (
BICTCP_BETA_SCALE
+ beta))
in bictcp_recalc_ssthresh()
171
/ (2 *
BICTCP_BETA_SCALE
);
in bictcp_recalc_ssthresh()
178
return max((tp->snd_cwnd * beta) /
BICTCP_BETA_SCALE
, 2U);
in bictcp_recalc_ssthresh()
H
A
D
tcp_cubic.c
32
#define
BICTCP_BETA_SCALE
1024 /* Scale factor beta calculation
macro
48
static int beta __read_mostly = 717; /* = 717/1024 (
BICTCP_BETA_SCALE
) */
357
ca->last_max_cwnd = (tp->snd_cwnd * (
BICTCP_BETA_SCALE
+ beta))
in bictcp_recalc_ssthresh()
358
/ (2 *
BICTCP_BETA_SCALE
);
in bictcp_recalc_ssthresh()
362
return max((tp->snd_cwnd * beta) /
BICTCP_BETA_SCALE
, 2U);
in bictcp_recalc_ssthresh()
503
beta_scale = 8*(
BICTCP_BETA_SCALE
+beta) / 3
in cubictcp_register()
504
/ (
BICTCP_BETA_SCALE
- beta);
in cubictcp_register()
/kernel/linux/linux-6.6/net/ipv4/
H
A
D
tcp_bic.c
21
#define
BICTCP_BETA_SCALE
1024 /* Scale factor beta calculation
macro
32
static int beta = 819; /* = 819/1024 (
BICTCP_BETA_SCALE
) */
170
ca->last_max_cwnd = (tcp_snd_cwnd(tp) * (
BICTCP_BETA_SCALE
+ beta))
in bictcp_recalc_ssthresh()
171
/ (2 *
BICTCP_BETA_SCALE
);
in bictcp_recalc_ssthresh()
178
return max((tcp_snd_cwnd(tp) * beta) /
BICTCP_BETA_SCALE
, 2U);
in bictcp_recalc_ssthresh()
H
A
D
tcp_cubic.c
34
#define
BICTCP_BETA_SCALE
1024 /* Scale factor beta calculation
macro
50
static int beta __read_mostly = 717; /* = 717/1024 (
BICTCP_BETA_SCALE
) */
350
ca->last_max_cwnd = (tcp_snd_cwnd(tp) * (
BICTCP_BETA_SCALE
+ beta))
in cubictcp_recalc_ssthresh()
351
/ (2 *
BICTCP_BETA_SCALE
);
in cubictcp_recalc_ssthresh()
355
return max((tcp_snd_cwnd(tp) * beta) /
BICTCP_BETA_SCALE
, 2U);
in cubictcp_recalc_ssthresh()
516
beta_scale = 8*(
BICTCP_BETA_SCALE
+beta) / 3
in cubictcp_register()
517
/ (
BICTCP_BETA_SCALE
- beta);
in cubictcp_register()
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/
H
A
D
bpf_cubic.c
26
#define
BICTCP_BETA_SCALE
1024 /* Scale factor beta calculation
macro
42
static const int beta = 717; /* = 717/1024 (
BICTCP_BETA_SCALE
) */
53
static const __u32 beta_scale = 8*(
BICTCP_BETA_SCALE
+beta) / 3
54
/ (
BICTCP_BETA_SCALE
- beta);
415
ca->last_max_cwnd = (tp->snd_cwnd * (
BICTCP_BETA_SCALE
+ beta))
in BPF_STRUCT_OPS()
416
/ (2 *
BICTCP_BETA_SCALE
);
in BPF_STRUCT_OPS()
420
return max((tp->snd_cwnd * beta) /
BICTCP_BETA_SCALE
, 2U);
in BPF_STRUCT_OPS()
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/
H
A
D
bpf_cubic.c
26
#define
BICTCP_BETA_SCALE
1024 /* Scale factor beta calculation
macro
42
static const int beta = 717; /* = 717/1024 (
BICTCP_BETA_SCALE
) */
53
static const __u32 beta_scale = 8*(
BICTCP_BETA_SCALE
+beta) / 3
54
/ (
BICTCP_BETA_SCALE
- beta);
409
ca->last_max_cwnd = (tp->snd_cwnd * (
BICTCP_BETA_SCALE
+ beta))
in BPF_STRUCT_OPS()
410
/ (2 *
BICTCP_BETA_SCALE
);
in BPF_STRUCT_OPS()
414
return max((tp->snd_cwnd * beta) /
BICTCP_BETA_SCALE
, 2U);
in BPF_STRUCT_OPS()
Completed in 5 milliseconds