Searched defs:outSize (Results 1 - 25 of 50) sorted by relevance

12

/external/lzma/CPP/7zip/Archive/Common/
H A DCrossThreadProgress.cpp7 STDMETHODIMP CCrossThreadProgress::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize) argument
10 OutSize = outSize;
/external/lzma/Java/SevenZip/
H A DICodeProgress.java5 public void SetProgress(long inSize, long outSize); argument
H A DLzmaBench.java202 public void SetProgress(long inSize, long outSize) argument
244 static long GetDecompressRating(long elapsedTime, long outSize, long inSize) argument
246 long numCommands = inSize * 220 + outSize * 20;
365 long outSize = kBufferSize;
367 if (!decoder.Code(inputCompressedStream, crcOutStream, outSize))
/external/lzma/CPP/7zip/Common/
H A DProgressUtils.cpp21 STDMETHODIMP CLocalProgress::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize) argument
26 if (outSize)
27 outSizeNew += (*outSize);
H A DFilterCoder.cpp40 const UInt64 * /* inSize */, const UInt64 *outSize, ICompressProgressInfo *progress)
44 _outSizeIsDefined = (outSize != 0);
46 _outSize = *outSize;
39 Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 * , const UInt64 *outSize, ICompressProgressInfo *progress) argument
H A DCWrappers.cpp15 static SRes CompressProgress(void *pp, UInt64 inSize, UInt64 outSize) throw() argument
18 p->Res = p->Progress->SetRatioInfo(CONVERT_PR_VAL(inSize), CONVERT_PR_VAL(outSize));
/external/lzma/CPP/7zip/Compress/
H A DCopyCoder.cpp22 const UInt64 * /* inSize */, const UInt64 *outSize,
36 if (outSize && size > *outSize - TotalSize)
37 size = (UInt32)(*outSize - TotalSize);
20 Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 * , const UInt64 *outSize, ICompressProgressInfo *progress) argument
H A DPpmdDecoder.cpp100 const UInt64 * /* inSize */, const UInt64 *outSize, ICompressProgressInfo *progress)
110 SetOutStreamSize(outSize);
131 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize) argument
133 _outSizeDefined = (outSize != NULL);
135 _outSize = *outSize;
99 Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 * , const UInt64 *outSize, ICompressProgressInfo *progress) argument
H A DPpmdEncoder.cpp111 const UInt64 * /* inSize */, const UInt64 * /* outSize */, ICompressProgressInfo *progress)
150 UInt64 outSize = _outStream.GetProcessed(); local
151 RINOK(progress->SetRatioInfo(&processed, &outSize));
H A DLzma2Decoder.cpp62 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize) argument
64 _outSizeDefined = (outSize != NULL);
66 _outSize = *outSize;
77 const UInt64 *outSize, ICompressProgressInfo *progress)
81 SetOutStreamSize(outSize);
75 Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 * , const UInt64 *outSize, ICompressProgressInfo *progress) argument
H A DLzmaDecoder.cpp71 void CDecoder::SetOutStreamSizeResume(const UInt64 *outSize) argument
73 _outSizeDefined = (outSize != NULL);
75 _outSize = *outSize;
81 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize) argument
86 SetOutStreamSizeResume(outSize);
174 const UInt64 * /* inSize */, const UInt64 *outSize, ICompressProgressInfo *progress)
178 SetOutStreamSize(outSize);
228 HRESULT CDecoder::CodeResume(ISequentialOutStream *outStream, const UInt64 *outSize, ICompressProgressInfo *progress) argument
230 SetOutStreamSizeResume(outSize);
173 Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 * , const UInt64 *outSize, ICompressProgressInfo *progress) argument
/external/lz4/tests/
H A Dfasttest.c24 int test_compress(const char *input, int inSize, char *output, int outSize) argument
37 if (outSize - (outOffset + 8) < LZ4_compressBound(length)) return -3;
40 lz4Stream, input + inOffset, output + outOffset + 8, length, outSize-outOffset, 1);
48 if (outOffset + 8 > outSize) return -5;
/external/lzma/CS/7zip/
H A DICoder.cs31 /// <param name="outSize">
34 void SetProgress(Int64 inSize, Int64 outSize); argument
51 /// <param name="outSize">
61 Int64 inSize, Int64 outSize, ICodeProgress progress);
60 Code(System.IO.Stream inStream, System.IO.Stream outStream, Int64 inSize, Int64 outSize, ICodeProgress progress) argument
/external/deqp/framework/platform/android/
H A DtcuAndroidNativeActivity.cpp39 static void* onSaveInstanceStateCallback (ANativeActivity* activity, size_t* outSize) argument
41 return static_cast<tcu::Android::NativeActivity*>(activity->instance)->onSaveInstanceState(outSize);
150 void* NativeActivity::onSaveInstanceState (size_t* outSize) argument
152 *outSize = 0;
/external/lzma/C/
H A DBcj2.c40 Byte *outBuf, SizeT outSize)
57 if (outSize == 0)
68 if (outSize - outPos < limit)
69 limit = outSize - outPos;
81 if (limit == 0 || outPos == outSize)
122 if (outPos == outSize)
125 if (outPos == outSize)
128 if (outPos == outSize)
133 return (outPos == outSize) ? SZ_OK : SZ_ERROR_DATA;
35 Bcj2_Decode( const Byte *buf0, SizeT size0, const Byte *buf1, SizeT size1, const Byte *buf2, SizeT size2, const Byte *buf3, SizeT size3, Byte *outBuf, SizeT outSize) argument
H A DLzma2Dec.c295 SizeT outSize = *destLen, inSize = *srcLen; local
305 if (outSize > p->decoder.dicBufSize - dicPos)
312 outSizeCur = dicPos + outSize;
323 outSize -= outSizeCur;
327 if (outSizeCur == 0 || outSize == 0)
337 SizeT outSize = *destLen, inSize = *srcLen; local
343 p.decoder.dicBufSize = outSize;
346 res = Lzma2Dec_DecodeToDic(&p, outSize, src, srcLen, finishMode, status);
H A DMtCoder.c58 static SRes Progress(ICompressProgress *p, UInt64 inSize, UInt64 outSize) argument
60 return (p && p->Progress(p, inSize, outSize) != SZ_OK) ? SZ_ERROR_PROGRESS : SZ_OK;
82 SRes MtProgress_Set(CMtProgress *p, unsigned index, UInt64 inSize, UInt64 outSize) argument
87 UPDATE_PROGRESS(outSize, p->outSizes[index], p->totalOutSize)
H A D7zDec.c69 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
109 for (i = 0; i < outSize; i++)
116 if (i != outSize)
130 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
138 state.dicBufSize = outSize;
154 res = LzmaDec_DecodeToDic(&state, outSize, inBuf, &inProcessed, LZMA_FINISH_END, &status);
161 if (state.dicBufSize != outSize || lookahead != 0 ||
178 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
188 state.decoder.dicBufSize = outSize;
204 res = Lzma2Dec_DecodeToDic(&state, outSize, inBu
68 SzDecodePpmd(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
129 SzDecodeLzma(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
177 SzDecodeLzma2(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
329 SzFolder_Decode2(const CSzFolder *folder, const Byte *propsData, const UInt64 *unpackSizes, const UInt64 *packPositions, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain, Byte *tempBuf[]) argument
456 SzAr_DecodeFolder(const CSzAr *p, UInt32 folderIndex, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, size_t outSize, ISzAlloc *allocMain) argument
[all...]
H A DLzma2Enc.c252 static SRes Progress(ICompressProgress *p, UInt64 inSize, UInt64 outSize) argument
254 return (p && p->Progress(p, inSize, outSize) != SZ_OK) ? SZ_ERROR_PROGRESS : SZ_OK;
/external/lzma/CPP/Windows/
H A DFileIO.h73 LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned, LPOVERLAPPED overlapped = NULL) const
76 outBuffer, outSize, bytesReturned, overlapped));
79 bool DeviceIoControlOut(DWORD controlCode, LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned) const argument
81 return DeviceIoControl(controlCode, NULL, 0, outBuffer, outSize, bytesReturned);
84 bool DeviceIoControlOut(DWORD controlCode, LPVOID outBuffer, DWORD outSize) const
87 return DeviceIoControlOut(controlCode, outBuffer, outSize, &bytesReturned);
72 DeviceIoControl(DWORD controlCode, LPVOID inBuffer, DWORD inSize, LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned, LPOVERLAPPED overlapped = NULL) const argument
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DDecoder.java202 long outSize) throws IOException
213 while (outSize < 0 || nowPos64 < outSize)
201 Code(java.io.InputStream inStream, java.io.OutputStream outStream, long outSize) argument
/external/lzma/CPP/7zip/UI/Common/
H A DUpdateCallback.cpp68 STDMETHODIMP CArchiveUpdateCallback::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize) argument
71 return Callback->SetRatioInfo(inSize, outSize);
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaDecoder.cs231 Int64 inSize, Int64 outSize, ICodeProgress progress)
240 UInt64 outSize64 = (UInt64)outSize;
230 Code(System.IO.Stream inStream, System.IO.Stream outStream, Int64 inSize, Int64 outSize, ICodeProgress progress) argument
/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaBench.cs152 public void SetProgress(Int64 inSize, Int64 outSize) argument
194 static UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 outSize, UInt64 inSize) argument
196 UInt64 numCommands = inSize * 220 + outSize * 20;
312 UInt64 outSize = kBufferSize;
314 decoder.Code(compressedStream, crcOutStream, 0, (Int64)outSize, null);
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationShaderInputOutputTests.cpp803 const int outSize = patchVertexCountCases[caseNdx].outPatchSize; local
805 const std::string caseName = "patch_vertices_" + de::toString(inSize) + "_in_" + de::toString(outSize) + "_out";
808 inSize, outSize, "vulkan/data/tessellation/" + caseName + "_ref.png"

Completed in 341 milliseconds

12