• Home
  • Raw
  • Download

Lines Matching refs:outSize

67     Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)  in SzDecodePpmd()  argument
107 for (i = 0; i < outSize; i++) in SzDecodePpmd()
114 if (i != outSize) in SzDecodePpmd()
128 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) in SzDecodeLzma() argument
136 state.dicBufSize = outSize; in SzDecodeLzma()
152 res = LzmaDec_DecodeToDic(&state, outSize, inBuf, &inProcessed, LZMA_FINISH_END, &status); in SzDecodeLzma()
159 if (state.dicBufSize != outSize || lookahead != 0 || in SzDecodeLzma()
176 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) in SzDecodeLzma2() argument
186 state.decoder.dicBufSize = outSize; in SzDecodeLzma2()
202 res = Lzma2Dec_DecodeToDic(&state, outSize, inBuf, &inProcessed, LZMA_FINISH_END, &status); in SzDecodeLzma2()
209 if (state.decoder.dicBufSize != outSize || lookahead != 0 || in SzDecodeLzma2()
333 #define CASE_BRA_CONV(isa) case k_ ## isa: isa ## _Convert(outBuffer, outSize, 0, 0); break;
337 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain, in SzFolder_Decode2() argument
357 SizeT outSizeCur = outSize; in SzFolder_Decode2()
377 if (unpackSize > outSize) /* check it */ in SzFolder_Decode2()
379 tempBuf3 = outBufCur = outBuffer + (outSize - (size_t)unpackSize); in SzFolder_Decode2()
434 outBuffer, outSize); in SzFolder_Decode2()
447 x86_Convert(outBuffer, outSize, 0, &state, 0); in SzFolder_Decode2()
461 Byte *outBuffer, size_t outSize, ISzAlloc *allocMain) in SzFolder_Decode() argument
466 outBuffer, (SizeT)outSize, allocMain, tempBuf); in SzFolder_Decode()