Home
last modified time | relevance | path

Searched refs:SetInBufSize (Results 1 – 10 of 10) sorted by relevance

/external/lzma/CPP/7zip/Compress/
DBcj2Coder.h53 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size);
109 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size);
DLzma2Decoder.h69 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size);
DLzmaDecoder.h64 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size);
DBcj2Coder.cpp64 STDMETHODIMP CEncoder::SetInBufSize(UInt32, UInt32 size) { _bufsNewSizes[BCJ2_NUM_STREAMS] = size; … in SetInBufSize() function in NCompress::NBcj2::CEncoder
324 STDMETHODIMP CDecoder::SetInBufSize(UInt32 streamIndex, UInt32 size) { _bufsNewSizes[streamIndex] =… in SetInBufSize() function in NCompress::NBcj2::CDecoder
DLzma2Decoder.cpp38 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSizeNew = size; return S_OK; } in SetInBufSize() function in NCompress::NLzma2::CDecoder
DLzmaDecoder.cpp44 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; } in SetInBufSize() function in NCompress::NLzma::CDecoder
/external/lzma/CPP/7zip/Common/
DFilterCoder.h202 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size);
DFilterCoder.cpp24 STDMETHODIMP CFilterCoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; } in SetInBufSize() function in CFilterCoder
/external/lzma/CPP/7zip/
DICoder.h225 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size) PURE;
/external/lzma/CPP/7zip/Archive/Common/
DCoderMixer2.cpp953 inSetSize->SetInBufSize(inCoderStreamIndex, kBufSize); in Init()