/external/lzma/CPP/7zip/Compress/ |
Bcj2Register.cpp | 9 static void *CreateCodec() { return (void *)(ICompressCoder2 *)(new NCompress::NBcj2::CDecoder()); }
|
Lzma2Register.cpp | 9 static void *CreateCodec() { return (void *)(ICompressCoder *)(new NCompress::NLzma2::CDecoder); }
|
LzmaRegister.cpp | 9 static void *CreateCodec() { return (void *)(ICompressCoder *)(new NCompress::NLzma::CDecoder); }
|
PpmdRegister.cpp | 10 static void *CreateCodec() { return (void *)(ICompressCoder *)(new NCompress::NPpmd::CDecoder); }
|
LzmaDecoder.cpp | 27 CDecoder::CDecoder(): _inBuf(0), _propsWereSet(false), _outSizeDefined(false),
41 CDecoder::~CDecoder()
47 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; }
48 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outBufSize = size; return S_OK; }
50 HRESULT CDecoder::CreateInputBuffer()
63 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *prop, UInt32 size)
70 void CDecoder::SetOutStreamSizeResume(const UInt64 *outSize)
80 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize) [all...] |
Lzma2Decoder.h | 15 class CDecoder:
66 CDecoder();
67 virtual ~CDecoder();
|
PpmdDecoder.h | 18 class CDecoder :
66 CDecoder(): _outBuf(NULL), _outSizeDefined(false)
73 ~CDecoder();
|
Bcj2Coder.h | 65 class CDecoder:
73 NCompress::NRangeCoder::CDecoder _rangeDecoder;
93 CDecoder *_coder;
95 CCoderReleaser(CDecoder *coder): _coder(coder) {}
110 CDecoder();
|
Lzma2Decoder.cpp | 29 CDecoder::CDecoder(): _inBuf(0), _outSizeDefined(false)
38 CDecoder::~CDecoder()
44 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *prop, UInt32 size)
58 STDMETHODIMP CDecoder::GetInStreamProcessedSize(UInt64 *value) { *value = _inSizeProcessed; return S_OK; }
59 STDMETHODIMP CDecoder::SetInStream(ISequentialInStream *inStream) { _inStream = inStream; return S_OK; }
60 STDMETHODIMP CDecoder::ReleaseInStream() { _inStream.Release(); return S_OK; }
62 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize)
75 STDMETHODIMP CDecoder::Code(ISequentialInStream *inStream, [all...] |
LzmaDecoder.h | 14 class CDecoder:
78 CDecoder();
79 virtual ~CDecoder();
|
Bcj2Coder.cpp | 268 STDMETHODIMP CDecoder::SetInBufSize(UInt32 streamIndex, UInt32 size) { _inBufSizes[streamIndex] = size; return S_OK; }
269 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outBufSize = size; return S_OK; }
271 CDecoder::CDecoder():
280 HRESULT CDecoder::CodeReal(ISequentialInStream **inStreams, const UInt64 ** /* inSizes */, UInt32 numInStreams,
373 STDMETHODIMP CDecoder::Code(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
|
RangeCoderBit.h | 83 UInt32 Decode(CDecoder *decoder)
|
RangeCoder.h | 109 class CDecoder
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zDecode.h | 32 class CDecoder
48 CDecoder(bool multiThread);
|
7zDecode.cpp | 80 CDecoder::CDecoder(bool multiThread)
89 HRESULT CDecoder::Decode(
|
7zExtract.cpp | 142 CDecoder decoder(
|
7zUpdate.cpp | 586 CDecoder Decoder;
|
7zIn.cpp | 814 CDecoder decoder(
[all...] |
/external/lzma/CPP/7zip/Archive/ |
LzmaHandler.cpp | 69 class CDecoder
71 NCompress::NLzma::CDecoder *_lzmaDecoderSpec;
75 ~CDecoder();
91 HRESULT CDecoder::Create(
97 _lzmaDecoderSpec = new NCompress::NLzma::CDecoder;
118 CDecoder::~CDecoder()
123 HRESULT CDecoder::Code(const CHeader &header, ISequentialOutStream *outStream,
359 CDecoder decoder;
|
/external/lzma/CPP/7zip/Bundles/LzmaCon/ |
LzmaAlone.cpp | 476 NCompress::NLzma::CDecoder *decoderSpec = new NCompress::NLzma::CDecoder;
|