OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LZMA2InputStream
(Results
1 - 3
of
3
) sorted by null
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
LZMA2Decoder.java
29
return
LZMA2InputStream
.getMemoryUsage(dictSize);
33
return new
LZMA2InputStream
(in, dictSize);
LZMA2InputStream.java
2
*
LZMA2InputStream
23
public class
LZMA2InputStream
extends InputStream {
116
public
LZMA2InputStream
(InputStream in, int dictSize) {
123
* This is like <code>
LZMA2InputStream
(InputStream, int)</code> except
138
public
LZMA2InputStream
(InputStream in, int dictSize, byte[] presetDict) {
325
* In
LZMA2InputStream
, the return value will be non-zero when the
LZMA2Options.java
54
* use {@link
LZMA2InputStream
} directly.
544
* to {@link
LZMA2InputStream
#getMemoryUsage(int)} if the dictionary size
551
* {@link
LZMA2InputStream
#getMemoryUsage} directly to get raw decoder
562
return
LZMA2InputStream
.getMemoryUsage(d + 1);
566
return new
LZMA2InputStream
(in, dictSize);
Completed in 108 milliseconds