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:SEC_TO_NANOSEC
(Results
1 - 11
of
11
) sorted by relevance
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/darwin/
H
A
D
rs_vsync_client_darwin.cpp
57
constexpr int64_t
SEC_TO_NANOSEC
= 1000000000;
in VsyncThreadMain()
local
63
int64_t now = ts.tv_sec *
SEC_TO_NANOSEC
+ ts.tv_nsec;
in VsyncThreadMain()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/windows/
H
A
D
rs_vsync_client_windows.cpp
57
constexpr int64_t
SEC_TO_NANOSEC
= 1000000000;
in VsyncThreadMain()
local
63
int64_t now = ts.tv_sec *
SEC_TO_NANOSEC
+ ts.tv_nsec;
in VsyncThreadMain()
/foundation/multimedia/audio_framework/services/audio_service/common/src/
H
A
D
futex_tool.cpp
34
const int64_t
SEC_TO_NANOSEC
= 1000000000;
member
39
int64_t timeoutNanoSec = timeout %
SEC_TO_NANOSEC
;
in TimeoutToRelativeTime()
40
int64_t timeoutSec = timeout /
SEC_TO_NANOSEC
;
in TimeoutToRelativeTime()
/foundation/multimodalinput/input/service/window_manager/src/
H
A
D
knuckle_glow_point.cpp
28
constexpr int32_t
SEC_TO_NANOSEC
{ 1000000000 };
62
return static_cast<int64_t>(time.tv_sec) *
SEC_TO_NANOSEC
+ time.tv_nsec;
in GetNanoTime()
/foundation/ability/form_fwk/services/src/
H
A
D
form_util.cpp
34
constexpr int64_t
SEC_TO_NANOSEC
= 1000000000;
member
71
elapsedTime = (t.tv_sec) *
SEC_TO_NANOSEC
+ t.tv_nsec;
in GenerateFormId()
146
return (ts.tv_sec *
SEC_TO_NANOSEC
+ ts.tv_nsec);
in GetCurrentNanosecond()
/foundation/arkui/ace_engine/frameworks/base/utils/
H
A
D
time_util.cpp
27
constexpr int64_t
SEC_TO_NANOSEC
= 1000000000;
member
56
return ts.tv_sec *
SEC_TO_NANOSEC
+ ts.tv_nsec;
in GetSysTimestamp()
/foundation/multimodalinput/input/test/unittest/common/src/
H
A
D
event_util_test.cpp
29
constexpr int32_t
SEC_TO_NANOSEC
{ 1000000000 };
298
return static_cast<int64_t>(time.tv_sec) *
SEC_TO_NANOSEC
+ time.tv_nsec;
in GetNanoTime()
/foundation/arkui/ace_engine/frameworks/component_test/core/
H
A
D
action.h
31
constexpr int64_t
SEC_TO_NANOSEC
= 1000000000;
member
H
A
D
action.cpp
108
std::chrono::duration<int64_t, std::nano> duration(ts.tv_sec *
SEC_TO_NANOSEC
+ ts.tv_nsec);
in DispatchPointerEvent()
/foundation/arkui/ace_engine/frameworks/core/pipeline/
H
A
D
pipeline_context.cpp
61
constexpr int64_t
SEC_TO_NANOSEC
= 1000000000;
member
72
return (ts.tv_sec *
SEC_TO_NANOSEC
+ ts.tv_nsec);
/foundation/multimodalinput/input/service/key_command/test/
H
A
D
key_command_handler_test.cpp
45
constexpr int32_t
SEC_TO_NANOSEC
= 1000000000;
member
153
return static_cast<int64_t>(time.tv_sec) *
SEC_TO_NANOSEC
+ time.tv_nsec;
in GetNanoTime()
Completed in 15 milliseconds