OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_prices
(Results
1 - 2
of
2
) sorted by null
/external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs
248
UInt32[]
_prices
= new UInt32[Base.kNumLenSymbols << Base.kNumPosStatesBitsEncodingMax];
field in class:SevenZip.Compression.LZMA.Encoder.LenPriceTableEncoder
256
return
_prices
[posState * Base.kNumLenSymbols + symbol];
261
SetPrices(posState, _tableSize,
_prices
, posState * Base.kNumLenSymbols);
[
all
...]
/external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java
248
int[]
_prices
= new int[Base.kNumLenSymbols<<Base.kNumPosStatesBitsEncodingMax];
field in class:Encoder.LenPriceTableEncoder
256
return
_prices
[posState * Base.kNumLenSymbols + symbol];
261
SetPrices(posState, _tableSize,
_prices
, posState * Base.kNumLenSymbols);
[
all
...]
Completed in 477 milliseconds