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:keepSizeBefore
(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
69
_keepSizeBefore =
keepSizeBefore
;
in Create()
71
int blockSize =
keepSizeBefore
+ keepSizeAfter + keepSizeReserv;
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
69
_keepSizeBefore =
keepSizeBefore
;
in Create()
71
UInt32 blockSize =
keepSizeBefore
+ keepSizeAfter + keepSizeReserv;
in Create()
/third_party/lzma/C/
H
A
D
LzFind.c
186
const size_t offset = (size_t)(p->buffer - p->bufBase) - p->
keepSizeBefore
;
in MatchFinder_MoveBlock()
187
const size_t keepBefore = (offset & (kBlockMoveAlign - 1)) + p->
keepSizeBefore
;
in MatchFinder_MoveBlock()
282
UInt32 blockSize = (p->
keepSizeBefore
+ p->keepSizeAfter);
in GetBlockSize()
289
if (p->
keepSizeBefore
< historySize || blockSize < p->
keepSizeBefore
) // if 32-bit overflow
in GetBlockSize()
374
/* we need one additional byte in (p->
keepSizeBefore
),
in MatchFinder_Create()
377
p->
keepSizeBefore
= historySize + keepAddBufferBefore + 1;
in MatchFinder_Create()
H
A
D
LzFind.h
39
UInt32
keepSizeBefore
;
member
Completed in 4 milliseconds