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:REFRESH_PERIOD
(Results
1 - 6
of
6
) sorted by relevance
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/pipeline/
H
A
D
rs_render_thread.cpp
87
static constexpr uint64_t
REFRESH_PERIOD
= 16666667;
member
396
// If last frame is too far away (earlier than 2 vsync from now), we use currentTimestamp_ -
REFRESH_PERIOD
as
in ProcessCommands()
398
if (timestamp_ - lastAnimateTimestamp_ > 2 *
REFRESH_PERIOD
) { // 2: if last frame is earlier than 2 vsync from now
in ProcessCommands()
399
context_->currentTimestamp_ = timestamp_ -
REFRESH_PERIOD
;
in ProcessCommands()
/foundation/graphic/graphic_2d/rosen/modules/composer/vsync/src/
H
A
D
vsync_generator.cpp
55
constexpr int64_t
REFRESH_PERIOD
= 16666667; // 16666667ns == 16.666667ms
member
120
period_ =
REFRESH_PERIOD
;
in VSyncGenerator()
535
period =
REFRESH_PERIOD
;
in UpdateMode()
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H
A
D
rs_hardware_thread.cpp
73
constexpr int64_t
REFRESH_PERIOD
= 16667; // 16667us == 16.667ms
member
224
uint32_t missedFrames = frameTime /
REFRESH_PERIOD
;
in CommitAndReleaseLayers()
H
A
D
rs_main_thread.cpp
143
constexpr uint64_t
REFRESH_PERIOD
= 16666667;
member
845
// If last frame is too far away (earlier than 1 vsync from now), we use currentTimestamp_ -
REFRESH_PERIOD
as
in ProcessCommand()
847
if (timestamp_ - lastAnimateTimestamp_ >
REFRESH_PERIOD
) { // if last frame is earlier than 1 vsync from now
in ProcessCommand()
848
context_->currentTimestamp_ = timestamp_ -
REFRESH_PERIOD
;
in ProcessCommand()
1111
if ((timestamp_ - transactionDataLastWaitTime_[pid]) /
REFRESH_PERIOD
> SKIP_COMMAND_FREQ_LIMIT) {
in CheckAndUpdateTransactionIndex()
3444
((timestamp_ - lastCleanCacheTimestamp_) /
REFRESH_PERIOD
) > CLEAN_CACHE_FREQ) {
in ClearTransactionDataPidInfo()
/foundation/graphic/graphic_2d/rosen/test/render/render/unittest/pipeline/
H
A
D
rs_main_thread_unit_test.cpp
38
constexpr uint64_t
REFRESH_PERIOD
= 16666667;
member
147
mainThread->timestamp_ =
REFRESH_PERIOD
+ 1;
in HWTEST_F()
846
mainThread->timestamp_ =
REFRESH_PERIOD
* SKIP_COMMAND_FREQ_LIMIT + 1;
in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/
H
A
D
rs_main_thread_test.cpp
39
constexpr uint64_t
REFRESH_PERIOD
= 16666667;
member
150
mainThread->timestamp_ =
REFRESH_PERIOD
+ 1;
in HWTEST_F()
848
mainThread->timestamp_ =
REFRESH_PERIOD
* SKIP_COMMAND_FREQ_LIMIT + 1;
in HWTEST_F()
Completed in 24 milliseconds