Lines Matching refs:mtCoder
377 CMtCoder mtCoder; member
452 MtCoder_Destruct(&p->mtCoder); in Lzma2Enc_Destroy()
678 progressThunk.mtProgress = &me->mtCoder.mtProgress; in Lzma2Enc_MtCallback_Code()
746 MtCoder_Construct(&p->mtCoder); in Lzma2Enc_Encode2()
762 p->mtCoder.allocBig = p->allocBig; in Lzma2Enc_Encode2()
763 p->mtCoder.progress = progress; in Lzma2Enc_Encode2()
764 p->mtCoder.inStream = inStream; in Lzma2Enc_Encode2()
765 p->mtCoder.inData = inData; in Lzma2Enc_Encode2()
766 p->mtCoder.inDataSize = inDataSize; in Lzma2Enc_Encode2()
767 p->mtCoder.mtCallback = &vt; in Lzma2Enc_Encode2()
768 p->mtCoder.mtCallbackObject = p; in Lzma2Enc_Encode2()
770 p->mtCoder.blockSize = (size_t)p->props.blockSize; in Lzma2Enc_Encode2()
771 if (p->mtCoder.blockSize != p->props.blockSize) in Lzma2Enc_Encode2()
775 size_t destBlockSize = p->mtCoder.blockSize + (p->mtCoder.blockSize >> 10) + 16; in Lzma2Enc_Encode2()
776 if (destBlockSize < p->mtCoder.blockSize) in Lzma2Enc_Encode2()
783 p->mtCoder.numThreadsMax = p->props.numBlockThreads_Max; in Lzma2Enc_Encode2()
784 p->mtCoder.expectedDataSize = p->expectedDataSize; in Lzma2Enc_Encode2()
787 SRes res = MtCoder_Code(&p->mtCoder); in Lzma2Enc_Encode2()