Lines Matching refs:mtCoder
272 CMtCoder mtCoder; member
359 if (MtProgress_Set(&mainEncoder->mtCoder.mtProgress, index, p->srcPos, *destSize) != SZ_OK) in MtCallbackImp_Code()
399 MtCoder_Construct(&p->mtCoder); in Lzma2Enc_Create()
420 MtCoder_Destruct(&p->mtCoder); in Lzma2Enc_Destroy()
480 p->mtCoder.progress = progress; in Lzma2Enc_Encode()
481 p->mtCoder.inStream = inStream; in Lzma2Enc_Encode()
482 p->mtCoder.outStream = outStream; in Lzma2Enc_Encode()
483 p->mtCoder.alloc = p->alloc; in Lzma2Enc_Encode()
484 p->mtCoder.mtCallback = &mtCallback.funcTable; in Lzma2Enc_Encode()
486 p->mtCoder.blockSize = p->props.blockSize; in Lzma2Enc_Encode()
487 p->mtCoder.destBlockSize = p->props.blockSize + (p->props.blockSize >> 10) + 16; in Lzma2Enc_Encode()
488 p->mtCoder.numThreads = p->props.numBlockThreads; in Lzma2Enc_Encode()
490 return MtCoder_Code(&p->mtCoder); in Lzma2Enc_Encode()