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:_virtPos
(Results
1 - 3
of
3
) sorted by relevance
/third_party/lzma/CPP/7zip/Common/
H
A
D
LimitedStreams.cpp
34
if (
_virtPos
>= _size)
in Read()
38
// return (
_virtPos
== _size) ? S_OK: E_FAIL; // ERROR_HANDLE_EOF
in Read()
41
const UInt64 rem = _size -
_virtPos
;
in Read()
45
UInt64 newPos = _startOffset +
_virtPos
;
in Read()
55
_virtPos
+= size;
in Read()
64
case STREAM_SEEK_CUR: offset +=
_virtPos
; break;
in Seek()
70
_virtPos
= (UInt64)offset;
in Seek()
72
*newPosition =
_virtPos
;
in Seek()
92
if (
_virtPos
>= Size)
in Read()
95
UInt64 rem = Size -
_virtPos
;
in Read()
[all...]
H
A
D
LimitedStreams.h
40
UInt64
_virtPos
;
52
_virtPos
= 0;
65
UInt64
_virtPos
;
80
_virtPos
= 0;
108
UInt64
_virtPos
;
118
_virtPos
= 0;
151
UInt64
_virtPos
;
158
_virtPos
= 0;
168
UInt64
_virtPos
;
193
_virtPos
[all...]
/third_party/lzma/CPP/7zip/Archive/
H
A
D
XzHandler.cpp
746
UInt64
_virtPos
;
member
757
_virtPos
= 0;
in InitAndSeek()
891
if (
_virtPos
>= Size)
in Read()
892
return S_OK; // (Size ==
_virtPos
) ? S_OK: E_FAIL;
in Read()
894
UInt64 rem = Size -
_virtPos
;
in Read()
903
if (
_virtPos
< _cacheStartPos ||
_virtPos
>= _cacheStartPos + _cacheSize)
in Read()
905
const size_t bi = FindBlock(_handlerSpec->_blocks, _handlerSpec->_blocksArraySize,
_virtPos
);
in Read()
921
const size_t offset = (size_t)(
_virtPos
- _cacheStartPos);
in Read()
926
_virtPos
in Read()
[all...]
Completed in 2 milliseconds