Home
last modified time | relevance | path

Searched refs:coderIndex (Results 1 – 6 of 6) sorted by relevance

/external/lzma/CPP/7zip/Archive/Common/
DCoderMixer2.h78 UInt32 GetCoderInStreamIndex(UInt32 coderIndex) const in GetCoderInStreamIndex()
81 for (UInt32 i = 0; i < coderIndex; i++) in GetCoderInStreamIndex()
86 UInt32 GetCoderOutStreamIndex(UInt32 coderIndex) const in GetCoderOutStreamIndex()
89 for (UInt32 i = 0; i < coderIndex; i++) in GetCoderOutStreamIndex()
95 void FindInStream(UInt32 streamIndex, UInt32 &coderIndex, in FindInStream()
98 for (coderIndex = 0; coderIndex < (UInt32)Coders.Size(); coderIndex++) in FindInStream()
100 UInt32 curSize = Coders[coderIndex].NumInStreams; in FindInStream()
110 void FindOutStream(UInt32 streamIndex, UInt32 &coderIndex, in FindOutStream()
113 for (coderIndex = 0; coderIndex < (UInt32)Coders.Size(); coderIndex++) in FindOutStream()
115 UInt32 curSize = Coders[coderIndex].NumOutStreams; in FindOutStream()
[all …]
DCoderMixer2MT.h73 void SetProgressCoderIndex(unsigned coderIndex) { _progressCoderIndex = coderIndex; } in SetProgressCoderIndex() argument
76 void SetCoderInfo(UInt32 coderIndex, const UInt64 **inSizes, const UInt64 **outSizes) in SetCoderInfo() argument
77 { _coders[coderIndex].SetCoderInfo(inSizes, outSizes); } in SetCoderInfo()
/external/lzma/CPP/7zip/Archive/7z/
D7zDecode.cpp228 UInt32 coderIndex = 0; in Decode() local
234 CMyComPtr<IUnknown> &decoder = _decoders[coderIndex]; in Decode()
291 coderIndex++; in Decode()
D7zEncode.cpp392 UInt32 coderIndex, coderStreamIndex; in EncoderConstr() local
393 _bindInfo.FindInStream(inIndex, coderIndex, coderStreamIndex); in EncoderConstr()
394 UInt32 outIndex = _bindInfo.GetCoderOutStreamIndex(coderIndex); in EncoderConstr()
/external/lzma/C/
DXzDec.c374 SRes MixCoder_SetFromMethod(CMixCoder *p, int coderIndex, UInt64 methodId) in MixCoder_SetFromMethod() argument
376 IStateCoder *sc = &p->coders[coderIndex]; in MixCoder_SetFromMethod()
377 p->ids[coderIndex] = methodId; in MixCoder_SetFromMethod()
385 if (coderIndex == 0) in MixCoder_SetFromMethod()
DXz.h177 SRes MixCoder_SetFromMethod(CMixCoder *p, int coderIndex, UInt64 methodId);