OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:niceLen
(Results
1 - 3
of
3
) sorted by null
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
LZEncoder.java
35
final int
niceLen
;
106
* @param
niceLen
if a match of at least <code>
niceLen
</code>
119
int
niceLen
, int matchLenMax, int mf, int depthLimit) {
123
niceLen
, matchLenMax, depthLimit);
127
niceLen
, matchLenMax, depthLimit);
137
int
niceLen
, int matchLenMax) {
145
this.
niceLen
=
niceLen
;
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
LZMA2Options.java
107
* Minimum value for <code>
niceLen
</code> is 8.
112
* Maximum value for <code>
niceLen
</code> is 273.
138
private int
niceLen
;
172
int
niceLen
, int mf, int depthLimit)
178
setNiceLen(
niceLen
);
212
niceLen
= preset <= 1 ? 128 : NICE_LEN_MAX;
217
niceLen
= (preset == 4) ? 16 : (preset == 5) ? 32 : 64;
439
* Once a match of at least <code>
niceLen
</code> bytes is found,
445
* <code>
niceLen
</code> is invalid
447
public void setNiceLen(int
niceLen
) throws UnsupportedOptionsException
[
all
...]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMAEncoder.java
53
final int
niceLen
;
93
int
niceLen
, int mf, int depthLimit) {
98
niceLen
, mf, depthLimit);
103
niceLen
, mf, depthLimit);
167
int lc, int lp, int pb, int dictSize, int
niceLen
) {
171
this.
niceLen
=
niceLen
;
174
matchLenEncoder = new LengthEncoder(pb,
niceLen
);
175
repLenEncoder = new LengthEncoder(pb,
niceLen
);
631
LengthEncoder(int pb, int
niceLen
) {
[
all
...]
Completed in 2882 milliseconds