Searched refs:mtCoder (Results 1 – 3 of 3) sorted by relevance
/external/lzma/C/ |
D | MtCoder.c | 111 void CMtThread_Construct(CMtThread *p, CMtCoder *mtCoder) in CMtThread_Construct() argument 113 p->mtCoder = mtCoder; in CMtThread_Construct() 139 if (p->mtCoder->alloc) in CMtThread_Destruct() 140 IAlloc_Free(p->mtCoder->alloc, p->outBuf); in CMtThread_Destruct() 143 if (p->mtCoder->alloc) in CMtThread_Destruct() 144 IAlloc_Free(p->mtCoder->alloc, p->inBuf); in CMtThread_Destruct() 150 { IAlloc_Free(p->mtCoder->alloc, buf); \ 151 size = newSize; buf = (Byte *)IAlloc_Alloc(p->mtCoder->alloc, size); \ 156 MY_BUF_ALLOC(p->inBuf, p->inBufSize, p->mtCoder->blockSize) in CMtThread_Prepare() 157 MY_BUF_ALLOC(p->outBuf, p->outBufSize, p->mtCoder->destBlockSize) in CMtThread_Prepare() [all …]
|
D | Lzma2Enc.c | 286 CMtCoder mtCoder; member 379 if (MtProgress_Set(&mainEncoder->mtCoder.mtProgress, index, p->srcPos, *destSize) != SZ_OK) in MtCallbackImp_Code() 423 MtCoder_Construct(&p->mtCoder); in Lzma2Enc_Create() 444 MtCoder_Destruct(&p->mtCoder); in Lzma2Enc_Destroy() 499 p->mtCoder.progress = progress; in Lzma2Enc_Encode() 500 p->mtCoder.inStream = inStream; in Lzma2Enc_Encode() 501 p->mtCoder.outStream = outStream; in Lzma2Enc_Encode() 502 p->mtCoder.alloc = p->alloc; in Lzma2Enc_Encode() 503 p->mtCoder.mtCallback = &mtCallback.funcTable; in Lzma2Enc_Encode() 505 p->mtCoder.blockSize = p->props.blockSize; in Lzma2Enc_Encode() [all …]
|
D | MtCoder.h | 53 struct _CMtCoder *mtCoder; member
|