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:keepSizeAfter
(Results
1 - 4
of
4
) sorted by relevance
/third_party/lzma/Java/SevenZip/Compression/LZ/
H
A
D
InWindow.java
67
public void Create(int keepSizeBefore, int
keepSizeAfter
, int keepSizeReserv)
in Create()
argument
70
_keepSizeAfter =
keepSizeAfter
;
in Create()
71
int blockSize = keepSizeBefore +
keepSizeAfter
+ keepSizeReserv;
in Create()
78
_pointerToLastSafePosition = _blockSize -
keepSizeAfter
;
in Create()
/third_party/lzma/CS/7zip/Compress/LZ/
H
A
D
LzInWindow.cs
67
public void Create(UInt32 keepSizeBefore, UInt32
keepSizeAfter
, UInt32 keepSizeReserv)
in Create()
argument
70
_keepSizeAfter =
keepSizeAfter
;
in Create()
71
UInt32 blockSize = keepSizeBefore +
keepSizeAfter
+ keepSizeReserv;
in Create()
78
_pointerToLastSafePosition = _blockSize -
keepSizeAfter
;
in Create()
/third_party/lzma/C/
H
A
D
LzFind.c
144
NeedMove() and MoveBlock() povide more than (
keepSizeAfter
)
in MatchFinder_ReadBlock()
172
if (GET_AVAIL_BYTES(p) > p->
keepSizeAfter
)
in MatchFinder_ReadBlock()
174
/* here and in another (p->
keepSizeAfter
) checks we keep on 1 byte more than was requested by Create() function
in MatchFinder_ReadBlock()
175
(GET_AVAIL_BYTES(p) >= p->
keepSizeAfter
) - minimal required size */
in MatchFinder_ReadBlock()
178
// on exit: (p->result != SZ_OK || p->streamEndWasReached || GET_AVAIL_BYTES(p) > p->
keepSizeAfter
)
in MatchFinder_ReadBlock()
198
condition (p->blockSize > dataSize + p->
keepSizeAfter
) is met
208
return ((size_t)(p->bufBase + p->blockSize - p->buffer) <= p->
keepSizeAfter
);
in MatchFinder_NeedMove()
213
if (p->
keepSizeAfter
>= GET_AVAIL_BYTES(p))
in MatchFinder_ReadIfRequired()
282
UInt32 blockSize = (p->keepSizeBefore + p->
keepSizeAfter
);
in GetBlockSize()
380
/* we need (p->
keepSizeAfter
>
in MatchFinder_Create()
[all...]
H
A
D
LzFind.h
40
UInt32
keepSizeAfter
;
member
Completed in 3 milliseconds