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:v64
(Results
1 - 8
of
8
) sorted by relevance
/third_party/lzma/CPP/Common/
H
A
D
MyWindows.cpp
175
#define SET_FILETIME(ft,
v64
) \
176
(ft)->dwLowDateTime = (DWORD)
v64
; \
177
(ft)->dwHighDateTime = (DWORD)(
v64
>> 32);
232
UInt64
v64
= GET_TIME_64(ft);
in FileTimeToSystemTime()
local
233
v64
/= 10000;
in FileTimeToSystemTime()
234
st->wMilliseconds = (WORD)(
v64
% 1000);
v64
/= 1000;
in FileTimeToSystemTime()
235
st->wSecond = (WORD)(
v64
% 60);
v64
/= 60;
in FileTimeToSystemTime()
236
st->wMinute = (WORD)(
v64
in FileTimeToSystemTime()
[all...]
/third_party/lzma/CPP/Windows/
H
A
D
TimeUtils.cpp
65
UInt64
v64
= ft.dwLowDateTime | ((UInt64)ft.dwHighDateTime << 32);
in FileTime_To_DosTime()
69
v64
+= (kNumTimeQuantumsInSecond * 2 - 1);
in FileTime_To_DosTime()
70
v64
/= kNumTimeQuantumsInSecond;
in FileTime_To_DosTime()
71
sec = (unsigned)(
v64
% 60);
in FileTime_To_DosTime()
72
v64
/= 60;
in FileTime_To_DosTime()
73
min = (unsigned)(
v64
% 60);
in FileTime_To_DosTime()
74
v64
/= 60;
in FileTime_To_DosTime()
75
hour = (unsigned)(
v64
% 24);
in FileTime_To_DosTime()
76
v64
/= 24;
in FileTime_To_DosTime()
78
v = (UInt32)
v64
;
in FileTime_To_DosTime()
[all...]
/third_party/lzma/C/Util/7z/
H
A
D
7zMain.c
344
#define SET_FILETIME(ft,
v64
) \
345
(ft)->dwLowDateTime = (DWORD)
v64
; \
346
(ft)->dwHighDateTime = (DWORD)(
v64
>> 32);
434
// UInt64
v64
= nt->Low | ((UInt64)nt->High << 32);
in ConvertFileTimeToString()
435
UInt64
v64
;
in ConvertFileTimeToString()
local
444
v64
= locTime.dwLowDateTime | ((UInt64)locTime.dwHighDateTime << 32);
in ConvertFileTimeToString()
446
v64
/= 10000000;
in ConvertFileTimeToString()
447
sec = (unsigned)(
v64
% 60);
v64
/= 60;
in ConvertFileTimeToString()
448
min = (unsigned)(
v64
in ConvertFileTimeToString()
[all...]
/third_party/lzma/CPP/7zip/Compress/
H
A
D
PpmdEncoder.cpp
80
const UInt64
v64
= prop.uhVal.QuadPart;
in SetCoderProperties()
local
81
if (
v64
> ((UInt64)1 << 32))
in SetCoderProperties()
83
if (
v64
== ((UInt64)1 << 32))
in SetCoderProperties()
86
v = (UInt32)
v64
;
in SetCoderProperties()
/third_party/node/deps/base64/base64/lib/arch/neon32/
H
A
D
dec_loop.c
5
const uint64x2_t
v64
= vreinterpretq_u64_u8(v);
in is_nonzero()
local
6
const uint32x2_t v32 = vqmovn_u64(
v64
);
in is_nonzero()
/third_party/ffmpeg/libavcodec/
H
A
D
vp9block.c
60
uint64_t
v64
= v * 0x0101010101010101ULL;
in setctx_2d()
local
62
AV_WN64A(ptr,
v64
);
in setctx_2d()
687
uint64_t
v64
= val * 0x0101010101010101ULL; \
in decode_mode()
688
AV_WN64A( &var,
v64
); \
in decode_mode()
689
AV_WN64A(&((uint8_t *) &var)[8],
v64
); \
in decode_mode()
/third_party/ffmpeg/libavformat/
H
A
D
nutdec.c
911
int64_t
v64
, value_len;
in read_sm_data()
local
925
} else if (sscanf(name, "CodecSpecificSide%"SCNd64"", &
v64
) == 1) {
in read_sm_data()
929
AV_WB64(dst,
v64
);
in read_sm_data()
/third_party/sqlite/src/
H
A
D
sqlite3.c
34819
u64
v64
;
sqlite3GetVarint32()
local
34870
u64
v64
;
sqlite3GetVarint32()
local
243194
u64
v64
;
global()
local
[all...]
Completed in 141 milliseconds