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:MS_PER_SECOND
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
incremental_marker.cpp
124
return static_cast<double>(tv.tv_sec) *
MS_PER_SECOND
+ (tv.tv_usec /
MS_PER_SECOND
);
in GetCurrentTimeInMs()
/arkcompiler/ets_runtime/ecmascript/
H
A
D
js_date.cpp
42
(*date)[MS] = (*date)[HOUR] %
MS_PER_SECOND
; // ms
in TransferTimeToDate()
43
(*date)[HOUR] = ((*date)[HOUR] - (*date)[MS]) /
MS_PER_SECOND
; // s from hour, minutes, second
in TransferTimeToDate()
145
return hourInteger * MS_PER_HOUR + minInteger * MS_PER_MINUTE + secInteger *
MS_PER_SECOND
+ msInteger;
490
localMs = time[TIMEZONE] *
MS_PER_SECOND
;
524
ans = static_cast<int64_t>(tv.tv_sec) *
MS_PER_SECOND
+ (tv.tv_usec /
MS_PER_SECOND
);
869
timeMsInt += tz *
MS_PER_SECOND
* SEC_PER_MINUTE;
in GetDateValues()
938
(((*date)[HOUR] * MIN_PER_HOUR + (*date)[MIN]) * SEC_PER_MINUTE + (*date)[SEC]) *
MS_PER_SECOND
+ (*date)[MS];
in SetDateValues()
941
int64_t offset = GetLocalOffsetFromOS(result, isLocal) * SEC_PER_MINUTE *
MS_PER_SECOND
;
in SetDateValues()
959
int64_t offset = GetLocalOffsetFromOS(result, true) * SEC_PER_MINUTE *
MS_PER_SECOND
;
in SetDateValues()
[all...]
H
A
D
js_date.h
30
static constexpr int
MS_PER_SECOND
= 1000;
member
/arkcompiler/ets_runtime/ecmascript/stubs/
H
A
D
runtime_stubs.cpp
3297
ans = static_cast<int64_t>(tv.tv_sec) *
MS_PER_SECOND
+ (tv.tv_usec /
MS_PER_SECOND
);
in CallDateNow()
Completed in 12 milliseconds