Searched refs:coderIndex (Results 1 – 9 of 9) sorted by relevance
/external/lzma/CPP/7zip/Archive/Common/ |
D | CoderMixer2.cpp | 125 bool CheckCoder(unsigned coderIndex); 132 bool CBondsChecks::CheckCoder(unsigned coderIndex) in CheckCoder() argument 134 const CCoderStreamsInfo &coder = BindInfo->Coders[coderIndex]; in CheckCoder() 136 if (coderIndex >= _coderUsed.Size() || _coderUsed[coderIndex]) in CheckCoder() 138 _coderUsed[coderIndex] = true; in CheckCoder() 140 UInt32 start = BindInfo->Coder_to_Stream[coderIndex]; in CheckCoder() 244 bool CMixer::Is_UnpackSize_Correct_for_Coder(UInt32 coderIndex) in Is_UnpackSize_Correct_for_Coder() argument 246 if (coderIndex == _bi.UnpackCoder) in Is_UnpackSize_Correct_for_Coder() 249 int bond = _bi.FindBond_for_UnpackStream(coderIndex); in Is_UnpackSize_Correct_for_Coder() 282 bool CMixer::Is_PackSize_Correct_for_Coder(UInt32 coderIndex) in Is_PackSize_Correct_for_Coder() argument [all …]
|
D | CoderMixer2.h | 154 UInt32 GetStream_for_Coder(UInt32 coderIndex) const in GetStream_for_Coder() 157 for (UInt32 i = 0; i < coderIndex; i++) in GetStream_for_Coder() 181 void GetCoder_for_Stream(UInt32 streamIndex, UInt32 &coderIndex, UInt32 &coderStreamIndex) const in GetCoder_for_Stream() 183 coderIndex = Stream_to_Coder[streamIndex]; in GetCoder_for_Stream() 184 coderStreamIndex = streamIndex - Coder_to_Stream[coderIndex]; in GetCoder_for_Stream() 283 …virtual void SetCoderInfo(unsigned coderIndex, const UInt64 *unpackSize, const UInt64 * const *pac… 291 bool Is_UnpackSize_Correct_for_Coder(UInt32 coderIndex); 292 bool Is_PackSize_Correct_for_Coder(UInt32 coderIndex); 293 bool IsThere_ExternalCoder_in_PackTree(UInt32 coderIndex); 333 HRESULT FinishCoder(UInt32 coderIndex); [all …]
|
/external/lzma/C/ |
D | MtDec.h | 86 void (*Parse)(void *p, unsigned coderIndex, CMtDecCallbackInfo *ci); 90 SRes (*PreCode)(void *p, unsigned coderIndex); 91 SRes (*Code)(void *p, unsigned coderIndex, 109 SRes (*Write)(void *p, unsigned coderIndex,
|
D | Lzma2DecMt.c | 236 static void Lzma2DecMt_MtCallback_Parse(void *obj, unsigned coderIndex, CMtDecCallbackInfo *cc) in Lzma2DecMt_MtCallback_Parse() argument 239 CLzma2DecMtThread *t = &me->coders[coderIndex]; in Lzma2DecMt_MtCallback_Parse() 241 PRF_STR_INT_2("Parse", coderIndex, cc->srcSize); in Lzma2DecMt_MtCallback_Parse() 258 …t->alloc.offset = ((UInt32)coderIndex * ((1 << 11) + (1 << 8) + (1 << 6))) & ((1 << kNumAlignBits)… in Lzma2DecMt_MtCallback_Parse() 415 static SRes Lzma2DecMt_MtCallback_PreCode(void *pp, unsigned coderIndex) in Lzma2DecMt_MtCallback_PreCode() argument 418 CLzma2DecMtThread *t = &me->coders[coderIndex]; in Lzma2DecMt_MtCallback_PreCode() 455 static SRes Lzma2DecMt_MtCallback_Code(void *pp, unsigned coderIndex, in Lzma2DecMt_MtCallback_Code() argument 461 CLzma2DecMtThread *t = &me->coders[coderIndex]; in Lzma2DecMt_MtCallback_Code() 465 PRF_STR_INT_2("Code", coderIndex, srcSize); in Lzma2DecMt_MtCallback_Code() 528 static SRes Lzma2DecMt_MtCallback_Write(void *pp, unsigned coderIndex, in Lzma2DecMt_MtCallback_Write() argument [all …]
|
D | XzDec.c | 508 static SRes MixCoder_SetFromMethod(CMixCoder *p, unsigned coderIndex, UInt64 methodId, Byte *outBuf… in MixCoder_SetFromMethod() argument 510 IStateCoder *sc = &p->coders[coderIndex]; in MixCoder_SetFromMethod() 511 p->ids[coderIndex] = methodId; in MixCoder_SetFromMethod() 519 if (coderIndex == 0) in MixCoder_SetFromMethod() 525 static SRes MixCoder_ResetFromMethod(CMixCoder *p, unsigned coderIndex, UInt64 methodId, Byte *outB… in MixCoder_ResetFromMethod() argument 527 IStateCoder *sc = &p->coders[coderIndex]; in MixCoder_ResetFromMethod() 1632 static void XzDecMt_Callback_Parse(void *obj, unsigned coderIndex, CMtDecCallbackInfo *cc) in XzDecMt_Callback_Parse() argument 1635 CXzDecMtThread *coder = &me->coders[coderIndex]; in XzDecMt_Callback_Parse() 1834 static SRes XzDecMt_Callback_PreCode(void *pp, unsigned coderIndex) in XzDecMt_Callback_PreCode() argument 1837 CXzDecMtThread *coder = &me->coders[coderIndex]; in XzDecMt_Callback_PreCode() [all …]
|
D | MtCoder.h | 60 SRes (*Code)(void *p, unsigned coderIndex, unsigned outBufIndex,
|
D | Lzma2Enc.c | 657 static SRes Lzma2Enc_MtCallback_Code(void *pp, unsigned coderIndex, unsigned outBufIndex, in Lzma2Enc_MtCallback_Code() argument 683 &me->coders[coderIndex], in Lzma2Enc_MtCallback_Code()
|
D | XzEnc.c | 1047 static SRes XzEnc_MtCallback_Code(void *pp, unsigned coderIndex, unsigned outBufIndex, in XzEnc_MtCallback_Code() argument 1082 &me->lzmaf_Items[coderIndex], in XzEnc_MtCallback_Code()
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zCompressionMode.h | 43 bool IsThereBond_to_Coder(unsigned coderIndex) const in IsThereBond_to_Coder() 46 if (Bonds[i].InCoder == coderIndex) in IsThereBond_to_Coder()
|