/external/lzma/CPP/7zip/Compress/ |
D | LzmaDecoder.cpp | 27 CDecoder::CDecoder(): _inBuf(0), _propsWereSet(false), _outSizeDefined(false), in CDecoder() function in NCompress::NLzma::CDecoder 38 CDecoder::~CDecoder() in ~CDecoder() 44 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; } in SetInBufSize() 45 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outBufSize = size; return S_OK; } in SetOutBufSize() 47 HRESULT CDecoder::CreateInputBuffer() in CreateInputBuffer() 60 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *prop, UInt32 size) in SetDecoderProperties2() 67 void CDecoder::SetOutStreamSizeResume(const UInt64 *outSize) in SetOutStreamSizeResume() 77 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize) in SetOutStreamSize() 86 STDMETHODIMP CDecoder::SetFinishMode(UInt32 finishMode) in SetFinishMode() 92 HRESULT CDecoder::CodeSpec(ISequentialInStream *inStream, ISequentialOutStream *outStream, ICompres… in CodeSpec() [all …]
|
D | Lzma2Decoder.cpp | 27 CDecoder::CDecoder(): in CDecoder() function in NCompress::NLzma2::CDecoder 38 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSizeNew = size; return S_OK; } in SetInBufSize() 39 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outStepSize = size; return S_OK; } in SetOutBufSize() 41 CDecoder::~CDecoder() in ~CDecoder() 47 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *prop, UInt32 size) in SetDecoderProperties2() 66 STDMETHODIMP CDecoder::GetInStreamProcessedSize(UInt64 *value) { *value = _inSizeProcessed; return … in GetInStreamProcessedSize() 67 STDMETHODIMP CDecoder::SetInStream(ISequentialInStream *inStream) { _inStream = inStream; return S_… in SetInStream() 68 STDMETHODIMP CDecoder::ReleaseInStream() { _inStream.Release(); return S_OK; } in ReleaseInStream() 70 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize) in SetOutStreamSize() 84 STDMETHODIMP CDecoder::SetFinishMode(UInt32 finishMode) in SetFinishMode() [all …]
|
D | PpmdDecoder.cpp | 26 CDecoder::~CDecoder() in ~CDecoder() 32 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *props, UInt32 size) in SetDecoderProperties2() 50 HRESULT CDecoder::CodeSpec(Byte *memStream, UInt32 size) in CodeSpec() 95 STDMETHODIMP CDecoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, in Code() 127 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize) in SetOutStreamSize() 139 STDMETHODIMP CDecoder::SetInStream(ISequentialInStream *inStream) in SetInStream() 146 STDMETHODIMP CDecoder::ReleaseInStream() in ReleaseInStream() 152 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize) in Read()
|
D | DeltaFilter.cpp | 90 class CDecoder: class 102 STDMETHODIMP CDecoder::Init() in Init() 108 STDMETHODIMP_(UInt32) CDecoder::Filter(Byte *data, UInt32 size) in STDMETHODIMP_() 114 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *props, UInt32 size) in SetDecoderProperties2() 124 CDecoder(),
|
D | PpmdDecoder.h | 18 class CDecoder : 66 CDecoder(): _outBuf(NULL), _outSizeDefined(false) in CDecoder() function 73 ~CDecoder();
|
D | Bcj2Coder.cpp | 324 STDMETHODIMP CDecoder::SetInBufSize(UInt32 streamIndex, UInt32 size) { _bufsNewSizes[streamIndex] =… in SetInBufSize() 325 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _bufsNewSizes[BCJ2_NUM_STREAMS] = size… in SetOutBufSize() 327 CDecoder::CDecoder(): _finishMode(false), _outSizeDefined(false), _outSize(0) in CDecoder() function in NCompress::NBcj2::CDecoder 330 STDMETHODIMP CDecoder::SetFinishMode(UInt32 finishMode) in SetFinishMode() 336 void CDecoder::InitCommon() in InitCommon() 355 HRESULT CDecoder::Code(ISequentialInStream * const *inStreams, const UInt64 * const *inSizes, UInt3… in Code() 515 STDMETHODIMP CDecoder::SetInStream2(UInt32 streamIndex, ISequentialInStream *inStream) in SetInStream2() 521 STDMETHODIMP CDecoder::ReleaseInStream2(UInt32 streamIndex) in ReleaseInStream2() 527 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize) in SetOutStreamSize() 545 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize) in Read()
|
D | Lzma2Decoder.h | 15 class CDecoder: 81 CDecoder(); 82 virtual ~CDecoder();
|
D | LzmaDecoder.h | 14 class CDecoder: 83 CDecoder(); 84 virtual ~CDecoder();
|
D | Bcj2Coder.h | 62 class CDecoder: 112 CDecoder();
|
D | LzmaRegister.cpp | 17 CDecoder(),
|
D | Lzma2Register.cpp | 17 CDecoder(),
|
D | PpmdRegister.cpp | 17 CDecoder(),
|
D | Bcj2Register.cpp | 12 REGISTER_CODEC_CREATE_2(CreateCodec, CDecoder(), ICompressCoder2) in REGISTER_CODEC_CREATE_2() argument
|
/external/lzma/CPP/7zip/Archive/ |
D | LzmaHandler.cpp | 77 class CDecoder class 83 NCompress::NLzma::CDecoder *_lzmaDecoderSpec; 85 ~CDecoder(); 98 HRESULT CDecoder::Create(bool filteredMode, ISequentialInStream *inStream) in Create() 102 _lzmaDecoderSpec = new NCompress::NLzma::CDecoder; in Create() 121 CDecoder::~CDecoder() in ~CDecoder() 126 HRESULT CDecoder::Code(const CHeader &header, ISequentialOutStream *outStream, in Code() 449 CDecoder decoder; in Extract()
|
D | XzHandler.h | 50 struct CDecoder: public CStatInfo struct 55 CDecoder(): DecodeRes(SZ_OK) {} in CDecoder() argument
|
D | XzHandler.cpp | 107 CDecoder &decoder, ICompressProgressInfo *progress) in Decode2() 545 HRESULT CDecoder::Decode(ISequentialInStream *seqInStream, ISequentialOutStream *outStream, ICompre… in Decode() 673 Int32 CDecoder::Get_Extract_OperationResult() const in Get_Extract_OperationResult() 736 CDecoder decoder; in Extract()
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zDecode.h | 24 class CDecoder 44 CDecoder(bool useMixerMT);
|
D | 7zDecode.cpp | 112 CDecoder::CDecoder(bool useMixerMT): in CDecoder() function in NArchive::N7z::CDecoder 220 HRESULT CDecoder::Decode( in Decode()
|
D | 7zExtract.cpp | 256 CDecoder decoder( in Extract()
|
D | 7zIn.cpp | 1063 CDecoder decoder(_useMixerMT); in ReadAndDecodePackedStreams()
|
D | 7zUpdate.cpp | 1419 CDecoder Decoder;
|
/external/lzma/CPP/7zip/Crypto/ |
D | 7zAes.h | 103 class CDecoder: 113 CDecoder();
|
D | 7zAes.cpp | 205 CDecoder::CDecoder() in CDecoder() function in NCrypto::N7z::CDecoder 210 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *data, UInt32 size) in SetDecoderProperties2()
|
D | 7zAesRegister.cpp | 13 CDecoder(),
|
/external/lzma/CPP/7zip/Bundles/LzmaCon/ |
D | LzmaAlone.cpp | 713 NCompress::NLzma::CDecoder *decoderSpec = new NCompress::NLzma::CDecoder; in main2()
|