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:peak_kbps
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/amdgpu_dm/
H
A
D
amdgpu_dm_mst_types.c
517
u64
peak_kbps
= kbps;
in kbps_to_peak_pbn()
local
519
peak_kbps
*= 1006;
in kbps_to_peak_pbn()
520
peak_kbps
= div_u64(
peak_kbps
, 1000);
in kbps_to_peak_pbn()
521
return (int) DIV64_U64_ROUND_UP(
peak_kbps
* 64, (54 * 8 * 1000));
in kbps_to_peak_pbn()
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/amdgpu_dm/
H
A
D
amdgpu_dm_mst_types.c
801
u64
peak_kbps
= kbps;
in kbps_to_peak_pbn()
local
803
peak_kbps
*= 1006;
in kbps_to_peak_pbn()
804
peak_kbps
*= fec_overhead_multiplier_x1000;
in kbps_to_peak_pbn()
805
peak_kbps
= div_u64(
peak_kbps
, 1000 * 1000);
in kbps_to_peak_pbn()
806
return (int) DIV64_U64_ROUND_UP(
peak_kbps
* 64, (54 * 8 * 1000));
in kbps_to_peak_pbn()
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/core/
H
A
D
dc_link.c
2824
struct fixed31_32
peak_kbps
;
in get_pbn_from_timing()
local
2836
*
peak_kbps
*= (1006/1000)
in get_pbn_from_timing()
2837
*
peak_kbps
*= (64/54)
in get_pbn_from_timing()
2838
*
peak_kbps
*= 8 convert to bytes
in get_pbn_from_timing()
2844
peak_kbps
= dc_fixpt_from_fraction(kbps, denominator);
in get_pbn_from_timing()
2846
return
peak_kbps
;
in get_pbn_from_timing()
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/link/
H
A
D
link_dpms.c
1057
struct fixed31_32
peak_kbps
;
in get_pbn_from_bw_in_kbps()
local
1071
*
peak_kbps
*= (64/54)
in get_pbn_from_bw_in_kbps()
1072
*
peak_kbps
/= (8 * 1000) convert to bytes
in get_pbn_from_bw_in_kbps()
1078
peak_kbps
= dc_fixpt_from_fraction(kbps, denominator);
in get_pbn_from_bw_in_kbps()
1080
return
peak_kbps
;
in get_pbn_from_bw_in_kbps()
Completed in 10 milliseconds