Searched defs:outSize (Results 1 - 25 of 40) 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
/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) 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 != 0)
37 if (size > *outSize - TotalSize)
38 size = (UInt32)(*outSize - TotalSize);
20 Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 * , const UInt64 *outSize, ICompressProgressInfo *progress) argument
H A DPpmdEncoder.cpp74 const UInt64 * /* inSize */, const UInt64 * /* outSize */, ICompressProgressInfo *progress)
113 UInt64 outSize = _outStream.GetProcessed(); local
114 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.cpp70 void CDecoder::SetOutStreamSizeResume(const UInt64 *outSize) argument
72 _outSizeDefined = (outSize != NULL);
74 _outSize = *outSize;
80 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize) argument
84 SetOutStreamSizeResume(outSize);
160 const UInt64 * /* inSize */, const UInt64 *outSize, ICompressProgressInfo *progress)
164 SetOutStreamSize(outSize);
214 HRESULT CDecoder::CodeResume(ISequentialOutStream *outStream, const UInt64 *outSize, ICompressProgressInfo *progress) argument
216 SetOutStreamSizeResume(outSize);
159 Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 * , const UInt64 *outSize, ICompressProgressInfo *progress) argument
/external/qemu/android/filesystems/
H A Dramdisk_extractor_unittest.cpp59 size_t outSize = 0; local
62 EXPECT_TRUE(android_extractRamdiskFile(path(), "foo", &out, &outSize));
63 EXPECT_EQ(kExpectedSize, outSize);
65 EXPECT_TRUE(!memcmp(out, kExpected, outSize));
73 size_t outSize = 0; local
76 EXPECT_TRUE(android_extractRamdiskFile(path(), "bar2", &out, &outSize));
77 EXPECT_EQ(kExpectedSize, outSize);
79 EXPECT_TRUE(!memcmp(out, kExpected, outSize));
85 size_t outSize = 0; local
87 EXPECT_FALSE(android_extractRamdiskFile(path(), "zoolander", &out, &outSize));
[all...]
H A Dramdisk_extractor.cpp194 size_t* outSize) {
196 *outSize = 0;
302 *outSize = entrySize;
191 android_extractRamdiskFile(const char* ramdiskPath, const char* fileName, char** out, size_t* outSize) argument
/external/lzma/CPP/7zip/UI/Common/
H A DUpdateCallback.cpp43 STDMETHODIMP CArchiveUpdateCallback::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize) argument
46 return Callback->SetRatioInfo(inSize, outSize);
H A DArchiveExtractCallback.cpp103 STDMETHODIMP CArchiveExtractCallback::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize) argument
106 return _localProgress->SetRatioInfo(inSize, outSize);
/external/lzma/CPP/Windows/
H A DFileIO.h69 LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned, LPOVERLAPPED overlapped) const
72 outBuffer, outSize, bytesReturned, overlapped));
76 DWORD inSize, LPVOID outBuffer, DWORD outSize) const
79 return DeviceIoControl(controlCode, inBuffer, inSize, outBuffer, outSize, &ret, 0);
82 bool DeviceIoControlOut(DWORD controlCode, LPVOID outBuffer, DWORD outSize) const
83 { return DeviceIoControl(controlCode, NULL, 0, outBuffer, outSize); }
68 DeviceIoControl(DWORD controlCode, LPVOID inBuffer, DWORD inSize, LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned, LPOVERLAPPED overlapped) const argument
/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/chromium_org/third_party/lzma_sdk/
H A DBcj2.c38 Byte *outBuf, SizeT outSize)
55 if (outSize == 0)
66 if (outSize - outPos < limit)
67 limit = outSize - outPos;
79 if (limit == 0 || outPos == outSize)
120 if (outPos == outSize)
123 if (outPos == outSize)
126 if (outPos == outSize)
131 return (outPos == outSize) ? SZ_OK : SZ_ERROR_DATA;
33 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.c293 SizeT outSize = *destLen, inSize = *srcLen; local
303 if (outSize > p->decoder.dicBufSize - dicPos)
310 outSizeCur = dicPos + outSize;
321 outSize -= outSizeCur;
325 if (outSizeCur == 0 || outSize == 0)
335 SizeT outSize = *destLen, inSize = *srcLen; local
343 decoder.decoder.dicBufSize = outSize;
349 res = Lzma2Dec_DecodeToDic(&decoder, outSize, src, srcLen, finishMode, status);
H A D7zDec.c67 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
107 for (i = 0; i < outSize; i++)
114 if (i != outSize)
128 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
136 state.dicBufSize = outSize;
152 res = LzmaDec_DecodeToDic(&state, outSize, inBuf, &inProcessed, LZMA_FINISH_END, &status);
159 if (state.dicBufSize != outSize || lookahead != 0 ||
176 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
186 state.decoder.dicBufSize = outSize;
202 res = Lzma2Dec_DecodeToDic(&state, outSize, inBu
66 SzDecodePpmd(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
127 SzDecodeLzma(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
175 SzDecodeLzma2(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
335 SzFolder_Decode2(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain, Byte *tempBuf[]) argument
459 SzFolder_Decode(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, size_t outSize, ISzAlloc *allocMain) argument
[all...]
/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.c38 Byte *outBuf, SizeT outSize)
55 if (outSize == 0)
66 if (outSize - outPos < limit)
67 limit = outSize - outPos;
79 if (limit == 0 || outPos == outSize)
120 if (outPos == outSize)
123 if (outPos == outSize)
126 if (outPos == outSize)
131 return (outPos == outSize) ? SZ_OK : SZ_ERROR_DATA;
33 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.c293 SizeT outSize = *destLen, inSize = *srcLen; local
303 if (outSize > p->decoder.dicBufSize - dicPos)
310 outSizeCur = dicPos + outSize;
321 outSize -= outSizeCur;
325 if (outSizeCur == 0 || outSize == 0)
335 SizeT outSize = *destLen, inSize = *srcLen; local
343 decoder.decoder.dicBufSize = outSize;
349 res = Lzma2Dec_DecodeToDic(&decoder, outSize, src, srcLen, finishMode, status);
H A DMtCoder.c56 static SRes Progress(ICompressProgress *p, UInt64 inSize, UInt64 outSize) argument
58 return (p && p->Progress(p, inSize, outSize) != SZ_OK) ? SZ_ERROR_PROGRESS : SZ_OK;
80 SRes MtProgress_Set(CMtProgress *p, unsigned index, UInt64 inSize, UInt64 outSize) argument
85 UPDATE_PROGRESS(outSize, p->outSizes[index], p->totalOutSize)
H A D7zDec.c67 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
107 for (i = 0; i < outSize; i++)
114 if (i != outSize)
128 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
136 state.dicBufSize = outSize;
152 res = LzmaDec_DecodeToDic(&state, outSize, inBuf, &inProcessed, LZMA_FINISH_END, &status);
159 if (state.dicBufSize != outSize || lookahead != 0 ||
176 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
186 state.decoder.dicBufSize = outSize;
202 res = Lzma2Dec_DecodeToDic(&state, outSize, inBu
66 SzDecodePpmd(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
127 SzDecodeLzma(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
175 SzDecodeLzma2(CSzCoderInfo *coder, UInt64 inSize, ILookInStream *inStream, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain) argument
335 SzFolder_Decode2(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain, Byte *tempBuf[]) argument
459 SzFolder_Decode(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, size_t outSize, ISzAlloc *allocMain) argument
[all...]
/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/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

Completed in 447 milliseconds

12