Lines Matching refs:allocBig

1737 void LzmaEnc_Destruct(CLzmaEnc *p, ISzAlloc *alloc, ISzAlloc *allocBig)  in LzmaEnc_Destruct()  argument
1740 MatchFinderMt_Destruct(&p->matchFinderMt, allocBig); in LzmaEnc_Destruct()
1742 MatchFinder_Free(&p->matchFinderBase, allocBig); in LzmaEnc_Destruct()
1747 void LzmaEnc_Destroy(CLzmaEncHandle p, ISzAlloc *alloc, ISzAlloc *allocBig) in LzmaEnc_Destroy() argument
1749 LzmaEnc_Destruct((CLzmaEnc *)p, alloc, allocBig); in LzmaEnc_Destroy()
1918 static SRes LzmaEnc_Alloc(CLzmaEnc *p, UInt32 keepWindowSize, ISzAlloc *alloc, ISzAlloc *allocBig) in LzmaEnc_Alloc() argument
1953 …Create(&p->matchFinderMt, p->dictSize, beforeSize, p->numFastBytes, LZMA_MATCH_LEN_MAX, allocBig)); in LzmaEnc_Alloc()
1960 …reate(&p->matchFinderBase, p->dictSize, beforeSize, p->numFastBytes, LZMA_MATCH_LEN_MAX, allocBig)) in LzmaEnc_Alloc()
2041 … SRes LzmaEnc_AllocAndInit(CLzmaEnc *p, UInt32 keepWindowSize, ISzAlloc *alloc, ISzAlloc *allocBig) in LzmaEnc_AllocAndInit() argument
2051 RINOK(LzmaEnc_Alloc(p, keepWindowSize, alloc, allocBig)); in LzmaEnc_AllocAndInit()
2059 ISzAlloc *alloc, ISzAlloc *allocBig) in LzmaEnc_Prepare() argument
2064 return LzmaEnc_AllocAndInit(p, 0, alloc, allocBig); in LzmaEnc_Prepare()
2069 ISzAlloc *alloc, ISzAlloc *allocBig) in LzmaEnc_PrepareForLzma2() argument
2073 return LzmaEnc_AllocAndInit(p, keepWindowSize, alloc, allocBig); in LzmaEnc_PrepareForLzma2()
2084 UInt32 keepWindowSize, ISzAlloc *alloc, ISzAlloc *allocBig) in LzmaEnc_MemPrepare() argument
2089 return LzmaEnc_AllocAndInit(p, keepWindowSize, alloc, allocBig); in LzmaEnc_MemPrepare()
2173 ISzAlloc *alloc, ISzAlloc *allocBig) in LzmaEnc_Encode() argument
2185 RINOK(LzmaEnc_Prepare(pp, inStream, outStream, alloc, allocBig)); in LzmaEnc_Encode()
2236 int writeEndMark, ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig) in LzmaEnc_MemEncode() argument
2252 progress, alloc, allocBig); in LzmaEnc_MemEncode()
2262 ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig) in LzmaEncode() argument
2275 writeEndMark, progress, alloc, allocBig); in LzmaEncode()
2278 LzmaEnc_Destroy(p, alloc, allocBig); in LzmaEncode()