OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DictionarySize
(Results
1 - 6
of
6
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/
Lzma.java
37
public int
DictionarySize
= 1 << 23;
67
if (!encoder.SetDictionarySize(params.
DictionarySize
)) throw new RuntimeException("Incorrect dictionary size");
/external/lzma/Java/SevenZip/
LzmaAlone.java
14
public int
DictionarySize
= 1 << 23;
36
DictionarySize
= 1 << Integer.parseInt(s.substring(1));
185
dictionary = params.
DictionarySize
;
206
if (!encoder.SetDictionarySize(params.
DictionarySize
))
/external/lzma/CS/7zip/
ICoder.cs
87
DictionarySize
,
/external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaAlone.cs
274
CoderPropID.
DictionarySize
,
LzmaBench.cs
186
static UInt64 GetCompressRating(UInt32
dictionarySize
, UInt64 elapsedTime, UInt64 size)
188
UInt64 t = GetLogSize(
dictionarySize
) - (18 << kSubBits);
201
UInt32
dictionarySize
,
206
return (GetCompressRating(
dictionarySize
, elapsedTimeEn, sizeEn) +
225
UInt32
dictionarySize
,
237
rating = GetCompressRating(
dictionarySize
, elapsedTime, size);
241
static public int LzmaBenchmark(Int32 numIterations, UInt32
dictionarySize
)
245
if (
dictionarySize
< (1 << 18))
258
CoderPropID.
DictionarySize
,
262
(Int32)(
dictionarySize
),
[
all
...]
/external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs
[
all
...]
Completed in 1111 milliseconds