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:GetTime64
(Results
1 - 3
of
3
) sorted by relevance
/third_party/lzma/CPP/7zip/Compress/
H
A
D
LzmaEncoder.cpp
223
static inline UInt64
GetTime64
(const FILETIME &t) { return ((UInt64)t.dwHighDateTime << 32) | t.dwLowDateTime; }
in GetTime64()
function
272
kernelTime =
GetTime64
(kernelTimeFT);
in Get()
273
userTime =
GetTime64
(userTimeFT);
in Get()
320
UInt64 totalTime =
GetTime64
(startTimeFT);
in Code()
341
totalTime =
GetTime64
(startTimeFT) - totalTime;
in Code()
/third_party/lzma/CPP/7zip/UI/Console/
H
A
D
Main.cpp
554
static inline UInt64
GetTime64
(const FILETIME &t) { return ((UInt64)t.dwHighDateTime << 32) | t.dwLowDateTime; }
in GetTime64()
function
614
UInt64 curTime =
GetTime64
(curTimeFT);
in PrintStat()
615
UInt64 creationTime =
GetTime64
(creationTimeFT);
in PrintStat()
616
UInt64 kernelTime =
GetTime64
(kernelTimeFT);
in PrintStat()
617
UInt64 userTime =
GetTime64
(userTimeFT);
in PrintStat()
/third_party/lzma/CPP/7zip/UI/Common/
H
A
D
Bench.cpp
490
static inline UInt64
GetTime64
(const FILETIME &t) { return ((UInt64)t.dwHighDateTime << 32) | t.dwLowDateTime; }
504
UInt64 newVal =
GetTime64
(userTime) +
GetTime64
(kernelTime);
2116
info.UserTime +=
GetTime64
(userTime) +
GetTime64
(kernelTime);
Completed in 6 milliseconds