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:MILLI_TO_BASE
(Results
1 - 3
of
3
) sorted by relevance
/commonlibrary/c_utils/base/src/
H
A
D
timer_event_handler.cpp
28
static const int
MILLI_TO_BASE
= 1000;
member
30
constexpr int MILLI_TO_NANO = NANO_TO_BASE /
MILLI_TO_BASE
;
61
newValue.it_value.tv_sec = now.tv_sec + interval_ /
MILLI_TO_BASE
;
in Initialize()
62
newValue.it_value.tv_nsec = now.tv_nsec + (interval_ %
MILLI_TO_BASE
) * MILLI_TO_NANO;
in Initialize()
74
newValue.it_interval.tv_sec = interval_ /
MILLI_TO_BASE
;
in Initialize()
75
newValue.it_interval.tv_nsec = (interval_ %
MILLI_TO_BASE
) * MILLI_TO_NANO;
in Initialize()
/commonlibrary/c_utils/base/test/benchmarktest/event_benchmark_test/
H
A
D
event_benchmark_test.cpp
74
static const int
MILLI_TO_BASE
= 1000;
member
76
static constexpr int MILLI_TO_NANO = NANO_TO_BASE /
MILLI_TO_BASE
;
369
newValue.it_value.tv_sec = now.tv_sec + interval /
MILLI_TO_BASE
;
in Initialize()
370
newValue.it_value.tv_nsec = now.tv_nsec + (interval %
MILLI_TO_BASE
) * MILLI_TO_NANO;
in Initialize()
377
newValue.it_interval.tv_sec = interval /
MILLI_TO_BASE
;
in Initialize()
378
newValue.it_interval.tv_nsec = (interval %
MILLI_TO_BASE
) * MILLI_TO_NANO;
in Initialize()
985
newValue.it_value.tv_sec = now.tv_sec + interval_ /
MILLI_TO_BASE
;
in Initialize()
986
newValue.it_value.tv_nsec = now.tv_nsec + (interval_ %
MILLI_TO_BASE
) * MILLI_TO_NANO;
in Initialize()
998
newValue.it_interval.tv_sec = interval_ /
MILLI_TO_BASE
;
in Initialize()
999
newValue.it_interval.tv_nsec = (interval_ %
MILLI_TO_BASE
) * MILLI_TO_NAN
in Initialize()
[all...]
/commonlibrary/c_utils/base/test/unittest/common/
H
A
D
utils_event_test.cpp
59
static const int
MILLI_TO_BASE
= 1000;
member
61
static constexpr int MILLI_TO_NANO = NANO_TO_BASE /
MILLI_TO_BASE
;
267
newValue.it_value.tv_sec = now.tv_sec + interval /
MILLI_TO_BASE
;
in Initialize()
268
newValue.it_value.tv_nsec = now.tv_nsec + (interval %
MILLI_TO_BASE
) * MILLI_TO_NANO;
in Initialize()
275
newValue.it_interval.tv_sec = interval /
MILLI_TO_BASE
;
in Initialize()
276
newValue.it_interval.tv_nsec = (interval %
MILLI_TO_BASE
) * MILLI_TO_NANO;
in Initialize()
841
newValue.it_value.tv_sec = now.tv_sec + interval_ /
MILLI_TO_BASE
;
in Initialize()
842
newValue.it_value.tv_nsec = now.tv_nsec + (interval_ %
MILLI_TO_BASE
) * MILLI_TO_NANO;
in Initialize()
854
newValue.it_interval.tv_sec = interval_ /
MILLI_TO_BASE
;
in Initialize()
855
newValue.it_interval.tv_nsec = (interval_ %
MILLI_TO_BASE
) * MILLI_TO_NAN
in Initialize()
[all...]
Completed in 5 milliseconds