Lines Matching refs:allocMain
67 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) in SzDecodePpmd() argument
92 if (!Ppmd7_Alloc(&ppmd, memSize, allocMain)) in SzDecodePpmd()
120 Ppmd7_Free(&ppmd, allocMain); in SzDecodePpmd()
128 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) in SzDecodeLzma() argument
134 RINOK(LzmaDec_AllocateProbs(&state, coder->Props.data, (unsigned)coder->Props.size, allocMain)); in SzDecodeLzma()
171 LzmaDec_FreeProbs(&state, allocMain); in SzDecodeLzma()
176 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) in SzDecodeLzma2() argument
184 RINOK(Lzma2Dec_AllocateProbs(&state, coder->Props.data[0], allocMain)); in SzDecodeLzma2()
220 Lzma2Dec_FreeProbs(&state, allocMain); in SzDecodeLzma2()
337 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain, in SzFolder_Decode2() argument
369 temp = (Byte *)IAlloc_Alloc(allocMain, outSizeCur); in SzFolder_Decode2()
397 RINOK(SzDecodeLzma(coder, inSize, inStream, outBufCur, outSizeCur, allocMain)); in SzFolder_Decode2()
401 RINOK(SzDecodeLzma2(coder, inSize, inStream, outBufCur, outSizeCur, allocMain)); in SzFolder_Decode2()
406 RINOK(SzDecodePpmd(coder, inSize, inStream, outBufCur, outSizeCur, allocMain)); in SzFolder_Decode2()
420 Byte *outBuffer, size_t outSize, ISzAlloc *allocMain) in SzFolder_Decode() argument
425 outBuffer, (SizeT)outSize, allocMain, tempBuf); in SzFolder_Decode()
427 IAlloc_Free(allocMain, tempBuf[i]); in SzFolder_Decode()