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:ewma_log
(Results
1 - 25
of
28
) sorted by relevance
1
2
/kernel/linux/linux-5.10/net/core/
H
A
D
gen_estimator.c
47
u8
ewma_log
;
member
84
brate = (brate >> est->
ewma_log
) - (est->avbps >> est->
ewma_log
);
in est_timer()
87
rate = (rate >> est->
ewma_log
) - (est->avpps >> est->
ewma_log
);
in est_timer()
146
if (parm->
ewma_log
== 0 || parm->
ewma_log
>= 31)
in gen_new_estimator()
158
est->
ewma_log
= parm->
ewma_log
;
in gen_new_estimator()
/kernel/linux/linux-6.6/net/core/
H
A
D
gen_estimator.c
47
u8
ewma_log
;
member
88
brate = (brate >> est->
ewma_log
) - (est->avbps >> est->
ewma_log
);
in est_timer()
91
rate = (rate >> est->
ewma_log
) - (est->avpps >> est->
ewma_log
);
in est_timer()
152
if (parm->
ewma_log
== 0 || parm->
ewma_log
>= 31)
in gen_new_estimator()
164
est->
ewma_log
= parm->
ewma_log
;
in gen_new_estimator()
/kernel/linux/linux-5.10/net/netfilter/
H
A
D
xt_RATEEST.c
131
if ((!info->interval && !info->
ewma_log
) ||
in xt_rateest_tg_checkentry()
133
info->
ewma_log
!= est->params.
ewma_log
)) {
in xt_rateest_tg_checkentry()
150
est->params.
ewma_log
= info->
ewma_log
;
in xt_rateest_tg_checkentry()
155
cfg.est.
ewma_log
= info->
ewma_log
;
in xt_rateest_tg_checkentry()
/kernel/linux/linux-6.6/net/netfilter/
H
A
D
xt_RATEEST.c
131
if ((!info->interval && !info->
ewma_log
) ||
in xt_rateest_tg_checkentry()
133
info->
ewma_log
!= est->params.
ewma_log
)) {
in xt_rateest_tg_checkentry()
151
est->params.
ewma_log
= info->
ewma_log
;
in xt_rateest_tg_checkentry()
156
cfg.est.
ewma_log
= info->
ewma_log
;
in xt_rateest_tg_checkentry()
/kernel/linux/linux-5.10/include/uapi/linux/netfilter/
H
A
D
xt_RATEEST.h
11
__u8
ewma_log
;
member
/kernel/linux/linux-6.6/include/uapi/linux/netfilter/
H
A
D
xt_RATEEST.h
11
__u8
ewma_log
;
member
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/netfilter/
H
A
D
xt_RATEEST.h
26
__u8
ewma_log
;
member
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/netfilter/
H
A
D
xt_RATEEST.h
26
__u8
ewma_log
;
member
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/netfilter/
H
A
D
xt_RATEEST.h
13
__u8
ewma_log
;
member
/kernel/linux/linux-5.10/include/uapi/linux/
H
A
D
gen_stats.h
70
* @
ewma_log
: the log of measurement window weight
74
unsigned char
ewma_log
;
member
H
A
D
pkt_sched.h
48
unsigned char
ewma_log
;
member
491
unsigned char
ewma_log
;
member
/kernel/linux/linux-6.6/include/uapi/linux/
H
A
D
gen_stats.h
70
* @
ewma_log
: the log of measurement window weight
74
unsigned char
ewma_log
;
member
H
A
D
pkt_sched.h
48
unsigned char
ewma_log
;
member
492
unsigned char
ewma_log
;
member
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/
H
A
D
gen_stats.h
56
unsigned char
ewma_log
;
member
H
A
D
pkt_sched.h
42
unsigned char
ewma_log
;
member
349
unsigned char
ewma_log
;
member
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/
H
A
D
gen_stats.h
56
unsigned char
ewma_log
;
member
H
A
D
pkt_sched.h
42
unsigned char
ewma_log
;
member
349
unsigned char
ewma_log
;
member
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/
H
A
D
gen_stats.h
45
unsigned char
ewma_log
;
member
H
A
D
pkt_sched.h
28
unsigned char
ewma_log
;
member
308
unsigned char
ewma_log
;
member
/kernel/linux/linux-5.10/net/sched/
H
A
D
sch_cbq.c
78
unsigned char
ewma_log
; /* time constant for idle time calculation */
member
407
* place, apparently they forgot to shift it by cl->
ewma_log
.
in cbq_overlimit()
410
delay -= (-cl->avgidle) - ((-cl->avgidle) >> cl->
ewma_log
);
in cbq_overlimit()
585
* where W=2^{-
ewma_log
}. But cl->avgidle is scaled:
in cbq_update()
589
avgidle += idle - (avgidle>>cl->
ewma_log
);
in cbq_update()
608
idle = (-avgidle) - ((-avgidle) >> cl->
ewma_log
);
in cbq_update()
1066
cl->
ewma_log
= lss->
ewma_log
;
in cbq_set_lss()
1208
q->link.
ewma_log
= TC_CBQ_DEF_EWMA;
in cbq_init()
1254
opt.
ewma_log
in cbq_dump_lss()
[all...]
/kernel/linux/linux-5.10/tools/include/uapi/linux/
H
A
D
pkt_sched.h
47
unsigned char
ewma_log
;
member
471
unsigned char
ewma_log
;
member
/kernel/linux/linux-6.6/tools/include/uapi/linux/
H
A
D
pkt_sched.h
47
unsigned char
ewma_log
;
member
472
unsigned char
ewma_log
;
member
/kernel/linux/linux-5.10/drivers/atm/
H
A
D
idt77252.h
192
unsigned int
ewma_log
;
member
H
A
D
idt77252.c
2094
est->avcps += ((long)rate - (long)est->avcps) >> est->
ewma_log
;
in idt77252_est_timer()
2131
est->
ewma_log
= 2; /* XXX: make this configurable */
in idt77252_init_est()
/kernel/linux/linux-6.6/drivers/atm/
H
A
D
idt77252.h
192
unsigned int
ewma_log
;
member
Completed in 32 milliseconds
1
2