HomeSort by relevance Sort by last modified time
    Searched refs:outSize (Results 1 - 25 of 227) sorted by null

1 2 3 4 5 6 7 8 910

  /external/lzma/Java/SevenZip/
ICodeProgress.java 5 public void SetProgress(long inSize, long outSize);
  /external/lzma/CPP/7zip/Archive/Common/
CrossThreadProgress.cpp 7 STDMETHODIMP CCrossThreadProgress::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize)
10 OutSize = outSize;
CrossThreadProgress.h 16 const UInt64 *OutSize;
34 STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize);
  /external/lzma/CPP/7zip/Common/
ProgressUtils.cpp 9 ProgressOffset = InSize = OutSize = 0;
21 STDMETHODIMP CLocalProgress::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize)
23 UInt64 inSizeNew = InSize, outSizeNew = OutSize;
26 if (outSize)
27 outSizeNew += (*outSize);
ProgressUtils.h 21 UInt64 OutSize;
31 STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize);
  /external/lzma/C/
Bcj2.h 13 outSize <= FullOutputSize,
30 Byte *outBuf, SizeT outSize);
Bcj2.c 40 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;
7zDec.c 69 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, inBuf, &inProcessed, LZMA_FINISH_END, &status);
    [all...]
  /external/lzma/CPP/7zip/Compress/
CopyCoder.cpp 22 const UInt64 * /* inSize */, const UInt64 *outSize,
36 if (outSize && size > *outSize - TotalSize)
37 size = (UInt32)(*outSize - TotalSize);
Lzma2Encoder.h 26 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);
LzmaDecoder.h 43 void SetOutStreamSizeResume(const UInt64 *outSize);
58 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);
60 STDMETHOD(SetOutStreamSize)(const UInt64 *outSize);
70 HRESULT CodeResume(ISequentialOutStream *outStream, const UInt64 *outSize, ICompressProgressInfo *progress);
CopyCoder.h 26 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);
LzmaDecoder.cpp 71 void CDecoder::SetOutStreamSizeResume(const UInt64 *outSize)
73 _outSizeDefined = (outSize != NULL);
75 _outSize = *outSize;
81 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize)
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)
230 SetOutStreamSizeResume(outSize);
LzmaEncoder.h 27 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);
Lzma2Decoder.h 51 ISequentialOutStream *outStream, const UInt64 *_inSize, const UInt64 *outSize,
60 STDMETHOD(SetOutStreamSize)(const UInt64 *outSize);
PpmdDecoder.h 56 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);
58 STDMETHOD(SetOutStreamSize)(const UInt64 *outSize);
PpmdDecoder.cpp 100 const UInt64 * /* inSize */, const UInt64 *outSize, ICompressProgressInfo *progress)
110 SetOutStreamSize(outSize);
131 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize)
133 _outSizeDefined = (outSize != NULL);
135 _outSize = *outSize;
PpmdEncoder.h 48 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);
  /system/core/gatekeeperd/
IGateKeeperService.cpp 52 uint32_t outSize = 0;
55 desiredPasswordSize, &out, &outSize);
59 if (ret == 0 && outSize > 0 && out != NULL) {
62 reply->writeInt32(outSize);
63 reply->writeInt32(outSize);
64 void *buf = reply->writeInplace(outSize);
65 memcpy(buf, out, outSize);
123 uint32_t outSize = 0;
127 &out, &outSize, &request_reenroll);
130 if (ret == 0 && outSize > 0 && out != NULL)
    [all...]
  /external/lz4/tests/
fasttest.c 24 int test_compress(const char *input, int inSize, char *output, int outSize)
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;
fullbench.c 258 static int local_LZ4_decompress_fast(const char* in, char* out, int inSize, int outSize)
261 LZ4_decompress_fast(in, out, outSize);
262 return outSize;
265 static int local_LZ4_decompress_fast_usingDict(const char* in, char* out, int inSize, int outSize)
268 LZ4_decompress_fast_usingDict(in, out, outSize, out - 65536, 65536);
269 return outSize;
272 static int local_LZ4_decompress_safe_usingDict(const char* in, char* out, int inSize, int outSize)
275 LZ4_decompress_safe_usingDict(in, out, inSize, outSize, out - 65536, 65536);
276 return outSize;
280 extern int LZ4_decompress_safe_forceExtDict(const char* in, char* out, int inSize, int outSize, const char* dict, int dictSize)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/
LzmaCompress.c 107 size_t outSize;
127 outSize = (size_t)fileSize / 20 * 21 + (1 << 16);
128 outBuffer = (Byte *)MyAlloc(outSize);
159 size_t outSizeProcessed = outSize - LZMA_HEADER_SIZE;
170 outSize = LZMA_HEADER_SIZE + outSizeProcessed;
173 if (outStream->Write(outStream, outBuffer, outSize) != outSize)
190 size_t outSize = 0;
212 outSize = (size_t)outSize64;
213 if (outSize != 0) {
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DisplayFacade.java 73 Point outSize = new Point();
75 d.getSize(outSize);
76 return outSize;
  /build/make/tools/atree/
files.h 34 off_t outSize;
  /external/deqp/framework/platform/android/
tcuAndroidNativeActivity.hpp 49 virtual void* onSaveInstanceState (size_t* outSize);

Completed in 1269 milliseconds

1 2 3 4 5 6 7 8 910