OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shortRepPrice
(Results
1 - 5
of
5
) sorted by null
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMAEncoderNormal.java
190
int
shortRepPrice
= getShortRepPrice(anyRepPrice,
192
if (
shortRepPrice
< opts[1].price)
193
opts[1].set1(
shortRepPrice
, 0, 0);
391
int
shortRepPrice
= getShortRepPrice(anyRepPrice,
394
if (
shortRepPrice
<= opts[optCur + 1].price) {
395
opts[optCur + 1].set1(
shortRepPrice
, optCur, 0);
/external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java
617
int
shortRepPrice
= repMatchPrice + GetRepLen1Price(_state, posState);
618
if (
shortRepPrice
< _optimum[1].Price)
620
_optimum[1].Price =
shortRepPrice
;
829
int
shortRepPrice
= repMatchPrice + GetRepLen1Price(state, posState);
830
if (
shortRepPrice
<= nextOptimum.Price)
832
nextOptimum.Price =
shortRepPrice
;
[
all
...]
/external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs
617
UInt32
shortRepPrice
= repMatchPrice + GetRepLen1Price(_state, posState);
618
if (
shortRepPrice
< _optimum[1].Price)
620
_optimum[1].Price =
shortRepPrice
;
829
UInt32
shortRepPrice
= repMatchPrice + GetRepLen1Price(state, posState);
830
if (
shortRepPrice
<= nextOptimum.Price)
832
nextOptimum.Price =
shortRepPrice
;
[
all
...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzmaEnc.c
1060
UInt32
shortRepPrice
= repMatchPrice + GetRepLen1Price(p, p->state, posState);
1061
if (
shortRepPrice
< p->opt[1].price)
1063
p->opt[1].price =
shortRepPrice
;
[
all
...]
/external/lzma/C/
LzmaEnc.c
1039
UInt32
shortRepPrice
= repMatchPrice + GetRepLen1Price(p, p->state, posState);
1040
if (
shortRepPrice
< p->opt[1].price)
1042
p->opt[1].price =
shortRepPrice
;
[
all
...]
Completed in 93 milliseconds