/external/lzma/CPP/7zip/Compress/ |
Lzma2Decoder.h | 15 class CDecoder:
66 CDecoder();
67 virtual ~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.cpp | 27 CDecoder::CDecoder(): _inBuf(0), _propsWereSet(false), _outSizeDefined(false),
42 CDecoder::~CDecoder()
48 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; }
49 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outBufSize = size; return S_OK; }
51 HRESULT CDecoder::CreateInputBuffer()
64 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *prop, UInt32 size)
71 void CDecoder::SetOutStreamSizeResume(const UInt64 *outSize)
81 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize) [all...] |
PpmdDecoder.cpp | 30 CDecoder::~CDecoder()
36 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *props, UInt32 size)
54 HRESULT CDecoder::CodeSpec(Byte *memStream, UInt32 size)
99 STDMETHODIMP CDecoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream,
131 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize)
143 STDMETHODIMP CDecoder::SetInStream(ISequentialInStream *inStream)
150 STDMETHODIMP CDecoder::ReleaseInStream()
156 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize)
|
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); }
|
Bcj2Coder.h | 49 class CDecoder:
57 NRangeCoder::CDecoder _rc;
77 CDecoder();
|
LzmaDecoder.h | 14 class CDecoder:
80 CDecoder();
81 virtual ~CDecoder();
|
PpmdDecoder.h | 18 class CDecoder :
66 CDecoder(): _outBuf(NULL), _outSizeDefined(false)
73 ~CDecoder();
|
Bcj2Coder.cpp | 255 STDMETHODIMP CDecoder::SetInBufSize(UInt32 streamIndex, UInt32 size) { _inBufSizes[streamIndex] = size; return S_OK; }
256 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outBufSize = size; return S_OK; }
258 CDecoder::CDecoder():
267 HRESULT CDecoder::CodeReal(ISequentialInStream **inStreams, const UInt64 ** /* inSizes */, UInt32 numInStreams,
353 STDMETHODIMP CDecoder::Code(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
|
RangeCoderBit.h | 83 UInt32 Decode(CDecoder *decoder)
|
RangeCoder.h | 107 class CDecoder
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zDecode.h | 32 class CDecoder
48 CDecoder(bool multiThread);
|
7zDecode.cpp | 84 CDecoder::CDecoder(bool multiThread)
93 HRESULT CDecoder::Decode(
|
7zExtract.cpp | 141 CDecoder decoder(
|
/external/lzma/CPP/7zip/Crypto/ |
7zAesRegister.cpp | 8 static void *CreateCodec() { return (void *)(ICompressFilter *)(new NCrypto::NSevenZ::CDecoder()); }
|
7zAes.h | 103 class CDecoder:
|
7zAes.cpp | 176 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *data, UInt32 size)
234 HRESULT CDecoder::CreateFilter()
|
/external/lzma/CPP/7zip/Archive/ |
LzmaHandler.cpp | 76 class CDecoder
81 NCompress::NLzma::CDecoder *_lzmaDecoderSpec;
83 ~CDecoder();
99 HRESULT CDecoder::Create(
105 _lzmaDecoderSpec = new NCompress::NLzma::CDecoder;
127 CDecoder::~CDecoder()
132 HRESULT CDecoder::Code(const CHeader &header, ISequentialOutStream *outStream,
468 CDecoder decoder;
|
/external/lzma/CPP/7zip/Bundles/LzmaCon/ |
LzmaAlone.cpp | 515 NCompress::NLzma::CDecoder *decoderSpec = new NCompress::NLzma::CDecoder;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_codecs.py | [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_codecs.py | [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_codecs.py | [all...] |