• Home
  • Raw
  • Download

Lines Matching refs:outSize

74     Byte *outBuffer, SizeT outSize, ISzAllocPtr allocMain)  in SzDecodePpmd()  argument
114 for (i = 0; i < outSize; i++) in SzDecodePpmd()
121 if (i != outSize) in SzDecodePpmd()
135 Byte *outBuffer, SizeT outSize, ISzAllocPtr allocMain) in SzDecodeLzma() argument
143 state.dicBufSize = outSize; in SzDecodeLzma()
159 res = LzmaDec_DecodeToDic(&state, outSize, inBuf, &inProcessed, LZMA_FINISH_END, &status); in SzDecodeLzma()
167 if (outSize != state.dicPos || inSize != 0) in SzDecodeLzma()
172 … if (outSize == state.dicPos && inSize == 0 && status == LZMA_STATUS_MAYBE_FINISHED_WITHOUT_MARK) in SzDecodeLzma()
195 Byte *outBuffer, SizeT outSize, ISzAllocPtr allocMain) in SzDecodeLzma2() argument
205 state.decoder.dicBufSize = outSize; in SzDecodeLzma2()
221 res = Lzma2Dec_DecodeToDic(&state, outSize, inBuf, &inProcessed, LZMA_FINISH_END, &status); in SzDecodeLzma2()
229 if (outSize != state.decoder.dicPos || inSize != 0) in SzDecodeLzma2()
368 #define CASE_BRA_CONV(isa) case k_ ## isa: isa ## _Convert(outBuffer, outSize, 0, 0); break;
375 Byte *outBuffer, SizeT outSize, ISzAllocPtr allocMain, in SzFolder_Decode2() argument
395 SizeT outSizeCur = outSize; in SzFolder_Decode2()
415 if (unpackSize > outSize) /* check it */ in SzFolder_Decode2()
417 tempBuf3 = outBufCur = outBuffer + (outSize - (size_t)unpackSize); in SzFolder_Decode2()
472 tempSize3 + tempSizes[0] + tempSizes[1] != outSize) in SzFolder_Decode2()
484 p.destLim = outBuffer + outSize; in SzFolder_Decode2()
514 Delta_Decode(state, (unsigned)(propsData[coder->PropsOffset]) + 1, outBuffer, outSize); in SzFolder_Decode2()
527 x86_Convert(outBuffer, outSize, 0, &state, 0); in SzFolder_Decode2()
551 Byte *outBuffer, size_t outSize, in SzAr_DecodeFolder() argument
569 || outSize != SzAr_GetFolderUnpackSize(p, folderIndex)) in SzAr_DecodeFolder()
579 outBuffer, (SizeT)outSize, allocMain, tempBuf); in SzAr_DecodeFolder()
586 if (CrcCalc(outBuffer, outSize) != p->FolderCRCs.Vals[folderIndex]) in SzAr_DecodeFolder()