OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:replen
(Results
1 - 4
of
4
) sorted by null
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMAEncoderNormal.java
223
int
repLen
= repLens[rep];
224
if (
repLen
< MATCH_LEN_MIN)
230
int price = longRepPrice + repLenEncoder.getPrice(
repLen
,
232
if (price < opts[
repLen
].price)
233
opts[
repLen
].set1(price, 0, rep);
234
} while (--
repLen
>= MATCH_LEN_MIN);
/external/lzma/C/
LzmaEnc.c
1065
UInt32
repLen
= repLens[i];
1067
if (
repLen
< 2)
1072
UInt32 curAndLenPrice = price + p->repLenEnc.prices[posState][
repLen
- 2];
1073
COptimal *opt = &p->opt[
repLen
];
1082
while (--
repLen
>= 2);
[
all
...]
/external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs
647
UInt32
repLen
= repLens[i];
648
if (
repLen
< 2)
653
UInt32 curAndLenPrice = price + _repMatchLenEncoder.GetPrice(
repLen
- 2, posState);
654
Optimal optimum = _optimum[
repLen
];
663
while (--
repLen
>= 2);
[
all
...]
/external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java
647
int
repLen
= repLens[i];
648
if (
repLen
< 2)
653
int curAndLenPrice = price + _repMatchLenEncoder.GetPrice(
repLen
- 2, posState);
654
Optimal optimum = _optimum[
repLen
];
663
while (--
repLen
>= 2);
[
all
...]
Completed in 198 milliseconds