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:BW_SHIFT
(Results
1 - 6
of
6
) sorted by relevance
/kernel/linux/linux-5.10/kernel/sched/
H
A
D
deadline.c
898
dl_se->runtime = (dl_se->dl_density * laxity) >>
BW_SHIFT
;
in update_dl_revised_wakeup()
1207
* multiplied by 2^
BW_SHIFT
, the result has to be shifted right by
1208
*
BW_SHIFT
.
1234
return (delta * u_act) >>
BW_SHIFT
;
in grub_reclaim()
2614
dl_rq->extra_bw = 1 <<
BW_SHIFT
;
in init_dl_rq_bw_ratio()
2617
global_rt_period()) >> (
BW_SHIFT
- RATIO_SHIFT);
in init_dl_rq_bw_ratio()
H
A
D
sched.h
2098
#define
BW_SHIFT
20
macro
2099
#define BW_UNIT (1 <<
BW_SHIFT
)
2101
#define MAX_BW_BITS (64 -
BW_SHIFT
)
2770
return (rq->dl.running_bw * SCHED_CAPACITY_SCALE) >>
BW_SHIFT
;
in cpu_bw_dl()
H
A
D
core.c
3516
return div64_u64(runtime <<
BW_SHIFT
, period);
in to_ratio()
8546
/* More than 203 days if
BW_SHIFT
equals 20. */
/kernel/linux/linux-6.6/kernel/sched/
H
A
D
deadline.c
963
dl_se->runtime = (dl_se->dl_density * laxity) >>
BW_SHIFT
;
in update_dl_revised_wakeup()
1268
* by 2^
BW_SHIFT
, the result has to be shifted right by
BW_SHIFT
.
1292
return (delta * u_act) >>
BW_SHIFT
;
in grub_reclaim()
2809
dl_rq->max_bw = dl_rq->extra_bw = 1 <<
BW_SHIFT
;
in init_dl_rq_bw_ratio()
2812
global_rt_period()) >> (
BW_SHIFT
- RATIO_SHIFT);
in init_dl_rq_bw_ratio()
H
A
D
sched.h
2608
#define
BW_SHIFT
20
macro
2609
#define BW_UNIT (1 <<
BW_SHIFT
)
2611
#define MAX_BW_BITS (64 -
BW_SHIFT
)
3194
* (
BW_SHIFT
- SCHED_CAPACITY_SHIFT) and false otherwise.
3200
return cap >= p->dl.dl_density >> (
BW_SHIFT
- SCHED_CAPACITY_SHIFT);
in dl_task_fits_capacity()
3205
return (rq->dl.running_bw * SCHED_CAPACITY_SCALE) >>
BW_SHIFT
;
in cpu_bw_dl()
H
A
D
core.c
5009
return div64_u64(runtime <<
BW_SHIFT
, period);
in to_ratio()
11567
/* More than 203 days if
BW_SHIFT
equals 20. */
Completed in 40 milliseconds