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:msPerSecond
(Results
1 - 8
of
8
) sorted by relevance
/third_party/node/deps/v8/src/base/platform/
H
A
D
platform-posix-time.cc
14
time_t tv = static_cast<time_t>(std::floor(time /
msPerSecond
));
in LocalTimezone()
28
return static_cast<double>(t->tm_gmtoff *
msPerSecond
-
in LocalTimeOffset()
29
(t->tm_isdst > 0 ? 3600 *
msPerSecond
: 0));
in LocalTimeOffset()
H
A
D
platform-aix.cc
63
time_t tv = static_cast<time_t>(floor(time_ms /
msPerSecond
));
in LocalTimezone()
78
return static_cast<double>(get_gmt_offset(*loc) *
msPerSecond
-
in LocalTimeOffset()
79
(loc->tm_isdst > 0 ? 3600 *
msPerSecond
: 0));
in LocalTimeOffset()
H
A
D
platform-solaris.cc
46
time_t tv = static_cast<time_t>(std::floor(time/
msPerSecond
));
in LocalTimezone()
55
return -static_cast<double>(timezone *
msPerSecond
);
in LocalTimeOffset()
H
A
D
platform-cygwin.cc
79
time_t tv = static_cast<time_t>(std::floor(time/
msPerSecond
));
in LocalTimezone()
94
return static_cast<double>((mktime(loc) - utc) *
msPerSecond
-
in LocalTimeOffset()
95
(loc->tm_isdst > 0 ? 3600 *
msPerSecond
: 0));
in LocalTimeOffset()
H
A
D
platform-posix.h
23
static const int
msPerSecond
= 1000;
member in v8::base::PosixTimezoneCache
H
A
D
platform-starboard.cc
438
static const int
msPerSecond
= 1000;
member in v8::base::StarboardTimezoneCache
451
return SbTimeZoneGetCurrent() * 60.0 *
msPerSecond
* (-1);
458
return ez_exploded.tm_isdst > 0 ? 3600 *
msPerSecond
: 0;
H
A
D
platform-posix.cc
782
time_t tv = static_cast<time_t>(std::floor(time/
msPerSecond
));
in DaylightSavingsOffset()
786
return t->tm_isdst > 0 ? 3600 *
msPerSecond
: 0;
in DaylightSavingsOffset()
H
A
D
platform.h
394
static const int
msPerSecond
= 1000;
member in v8::base::OS
Completed in 8 milliseconds