/third_party/lz4/tests/ |
H A D | fullbench.c | 282 static int local_LZ4_decompress_fast(const char* in, char* out, int inSize, int outSize) in local_LZ4_decompress_fast() argument 285 LZ4_decompress_fast(in, out, outSize); in local_LZ4_decompress_fast() 286 return outSize; in local_LZ4_decompress_fast() 289 static int local_LZ4_decompress_fast_usingDict_prefix(const char* in, char* out, int inSize, int outSize) in local_LZ4_decompress_fast_usingDict_prefix() argument 292 LZ4_decompress_fast_usingDict(in, out, outSize, out - 65536, 65536); in local_LZ4_decompress_fast_usingDict_prefix() 293 return outSize; in local_LZ4_decompress_fast_usingDict_prefix() 296 static int local_LZ4_decompress_fast_usingExtDict(const char* in, char* out, int inSize, int outSize) in local_LZ4_decompress_fast_usingExtDict() argument 299 LZ4_decompress_fast_usingDict(in, out, outSize, out - 65536, 65535); in local_LZ4_decompress_fast_usingExtDict() 300 return outSize; in local_LZ4_decompress_fast_usingExtDict() 303 static int local_LZ4_decompress_safe_withPrefix64k(const char* in, char* out, int inSize, int outSize) in local_LZ4_decompress_safe_withPrefix64k() argument 309 local_LZ4_decompress_safe_usingDict(const char* in, char* out, int inSize, int outSize) local_LZ4_decompress_safe_usingDict() argument 315 local_LZ4_decompress_safe_partial_usingDict(const char* in, char* out, int inSize, int outSize) local_LZ4_decompress_safe_partial_usingDict() argument 333 local_LZ4_decompress_safe_forceExtDict(const char* in, char* out, int inSize, int outSize) local_LZ4_decompress_safe_forceExtDict() argument 351 local_LZ4_decompress_safe_partial_forceExtDict(const char* in, char* out, int inSize, int outSize) local_LZ4_decompress_safe_partial_forceExtDict() argument 359 local_LZ4_decompress_safe_partial(const char* in, char* out, int inSize, int outSize) local_LZ4_decompress_safe_partial() argument 376 local_LZ4F_decompress(const char* in, char* out, int inSize, int outSize) local_LZ4F_decompress() argument [all...] |
/third_party/lzma/C/ |
H A D | 7zDec.c | 99 Byte *outBuffer, SizeT outSize, ISzAllocPtr allocMain)
in SzDecodePpmd() 135 const Byte *lim = buf + outSize;
in SzDecodePpmd() 164 Byte *outBuffer, SizeT outSize, ISzAllocPtr allocMain)
in SzDecodeLzma() 172 state.dicBufSize = outSize;
in SzDecodeLzma() 188 res = LzmaDec_DecodeToDic(&state, outSize, (const Byte *)inBuf, &inProcessed, LZMA_FINISH_END, &status);
in SzDecodeLzma() 196 if (outSize != state.dicPos || inSize != 0)
in SzDecodeLzma() 201 if (outSize == state.dicPos && inSize == 0 && status == LZMA_STATUS_MAYBE_FINISHED_WITHOUT_MARK)
in SzDecodeLzma() 224 Byte *outBuffer, SizeT outSize, ISzAllocPtr allocMain)
in SzDecodeLzma2() 234 state.decoder.dicBufSize = outSize;
in SzDecodeLzma2() 250 res = Lzma2Dec_DecodeToDic(&state, outSize, (cons in SzDecodeLzma2() 98 SzDecodePpmd(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStreamPtr inStream, Byte *outBuffer, SizeT outSize, ISzAllocPtr allocMain) SzDecodePpmd() argument 163 SzDecodeLzma(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStreamPtr inStream, Byte *outBuffer, SizeT outSize, ISzAllocPtr allocMain) SzDecodeLzma() argument 223 SzDecodeLzma2(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStreamPtr inStream, Byte *outBuffer, SizeT outSize, ISzAllocPtr allocMain) SzDecodeLzma2() argument 409 SzFolder_Decode2(const CSzFolder *folder, const Byte *propsData, const UInt64 *unpackSizes, const UInt64 *packPositions, ILookInStreamPtr inStream, UInt64 startPos, Byte *outBuffer, SizeT outSize, ISzAllocPtr allocMain, Byte *tempBuf[]) SzFolder_Decode2() argument 606 SzAr_DecodeFolder(const CSzAr *p, UInt32 folderIndex, ILookInStreamPtr inStream, UInt64 startPos, Byte *outBuffer, size_t outSize, ISzAllocPtr allocMain) SzAr_DecodeFolder() argument [all...] |
H A D | Lzma2Dec.c | 308 SizeT outSize,
in Lzma2Dec_Parse() 320 if (outSize == 0 && !checkFinishBlock)
in Lzma2Dec_Parse() 336 // if (outSize == 0) return LZMA_STATUS_NOT_FINISHED;
in Lzma2Dec_Parse() 343 if (outSize == 0 && p->state != LZMA2_STATE_FINISHED)
in Lzma2Dec_Parse() 357 if (outSize == 0)
in Lzma2Dec_Parse() 369 if (inCur > outSize)
in Lzma2Dec_Parse() 370 inCur = outSize;
in Lzma2Dec_Parse() 374 outSize -= inCur;
in Lzma2Dec_Parse() 408 SizeT rem = outSize;
in Lzma2Dec_Parse() 413 outSize in Lzma2Dec_Parse() 307 Lzma2Dec_Parse(CLzma2Dec *p, SizeT outSize, const Byte *src, SizeT *srcLen, int checkFinishBlock) Lzma2Dec_Parse() argument 430 SizeT outSize = *destLen, inSize = *srcLen; Lzma2Dec_DecodeToBuf() local 474 SizeT outSize = *destLen, inSize = *srcLen; Lzma2Decode() local [all...] |
H A D | Lzma2DecMt.c | 99 UInt64 outSize;
member 288 UInt64 rem = me->outSize - me->outProcessed_Parse;
in Lzma2DecMt_MtCallback_Parse() 721 const UInt64 rem = p->outSize - p->outProcessed;
in Lzma2Dec_Decode_ST() 739 outFinished = (p->outSize_Defined && p->outSize <= p->outProcessed);
in Lzma2Dec_Decode_ST() 770 if (p->outSize_Defined && p->outSize != p->outProcessed)
in Lzma2Dec_Decode_ST() 831 p->outSize = 0;
in Lzma2DecMt_Decode() 836 p->outSize = *outDataSize;
in Lzma2DecMt_Decode() 1000 p->outSize = 0;
in Lzma2DecMt_Init() 1005 p->outSize = *outDataSize;
in Lzma2DecMt_Init() 1020 Byte *data, size_t *outSize,
in Lzma2DecMt_Read() 1019 Lzma2DecMt_Read(CLzma2DecMtHandle p, Byte *data, size_t *outSize, UInt64 *inStreamProcessed) Lzma2DecMt_Read() argument [all...] |
H A D | MtCoder.c | 10 static SRes MtProgressThunk_Progress(ICompressProgressPtr pp, UInt64 inSize, UInt64 outSize)
in MtProgressThunk_Progress() argument 20 if (outSize != (UInt64)(Int64)-1)
in MtProgressThunk_Progress() 22 outSize2 = outSize - p->outSize;
in MtProgressThunk_Progress() 23 p->outSize = outSize;
in MtProgressThunk_Progress()
|
H A D | MtCoder.h | 35 UInt64 outSize;
member 40 #define MtProgressThunk_INIT(p) { (p)->inSize = 0; (p)->outSize = 0; }
|
/third_party/lzma/CPP/7zip/Compress/ |
H A D | LzmaDecoder.cpp | 82 void CDecoder::SetOutStreamSizeResume(const UInt64 *outSize)
in SetOutStreamSizeResume() argument 84 _outSizeDefined = (outSize != NULL);
in SetOutStreamSizeResume() 87 _outSize = *outSize;
in SetOutStreamSizeResume() 95 Z7_COM7F_IMF(CDecoder::SetOutStreamSize(const UInt64 *outSize))
in SetOutStreamSize() argument 99 SetOutStreamSizeResume(outSize);
in SetOutStreamSize() 219 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress))
in Code() 223 SetOutStreamSize(outSize);
in Code() 305 HRESULT CDecoder::CodeResume(ISequentialOutStream *outStream, const UInt64 *outSize, ICompressProgressInfo *progress)
in CodeResume() argument 307 SetOutStreamSizeResume(outSize);
in CodeResume() 218 Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress) Code() argument
|
H A D | Lzma2Decoder.cpp | 85 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress))
in Code() 153 &outWrap.vt, outSize, _finishMode,
in Code() 181 if (outSize && *outSize != outWrap.Processed)
in Code() 215 Z7_COM7F_IMF(CDecoder::SetOutStreamSize(const UInt64 *outSize))
in SetOutStreamSize() argument 233 const SRes res = Lzma2DecMt_Init(_dec, _prop, &props, outSize, _finishMode, &_inWrap.vt);
in SetOutStreamSize() 84 Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress) Code() argument
|
H A D | PpmdDecoder.cpp | 133 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress))
in Code() 143 SetOutStreamSize(outSize);
in Code() 169 Z7_COM7F_IMF(CDecoder::SetOutStreamSize(const UInt64 *outSize))
in SetOutStreamSize() argument 171 _outSizeDefined = (outSize != NULL);
in SetOutStreamSize() 173 _outSize = *outSize;
in SetOutStreamSize() 132 Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress) Code() argument
|
H A D | LzmaDecoder.h | 58 Z7_COM7F_IMF(SetOutStreamSize(const UInt64 *outSize));
86 void SetOutStreamSizeResume(const UInt64 *outSize);
92 HRESULT CodeResume(ISequentialOutStream *outStream, const UInt64 *outSize, ICompressProgressInfo *progress);
|
H A D | CopyCoder.cpp | 25 const UInt64 * /* inSize */, const UInt64 *outSize,
in Code() 40 if (outSize)
in Code() 42 const UInt64 rem = *outSize - TotalSize;
in Code() 23 Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 * , const UInt64 *outSize, ICompressProgressInfo *progress) Code() argument
|
/third_party/lzma/CPP/7zip/Bundles/LzmaCon/ |
H A D | LzmaAlone.cpp | 249 Z7_COM7F_IMF(CProgressPrint::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize))
257 if (outSize)
258 v2 = *outSize >> 20;
564 size_t outSize;
571 outSize = (size_t)outSize64;
573 if (outSize != outSize64)
576 if (outSize != 0)
578 outBuffer = (Byte *)MyAlloc((size_t)outSize);
583 int res = Lzma86_Encode(outBuffer, &outSize, inBuffer, inSize,
599 outSize [all...] |
/third_party/lzma/CPP/7zip/Common/ |
H A D | ProgressUtils.cpp | 23 Z7_COM7F_IMF(CLocalProgress::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize))
in SetRatioInfo() argument 30 if (outSize)
in SetRatioInfo() 31 outSize2 += (*outSize);
in SetRatioInfo()
|
H A D | FilterCoder.cpp | 89 const UInt64 * /* inSize */, const UInt64 *outSize, ICompressProgressInfo *progress))
in Code() 119 while (!outSize || nowPos64 < *outSize)
in Code() 228 if (outSize)
in Code() 230 const UInt64 rem = *outSize - nowPos64;
in Code() 432 Z7_COM7F_IMF(CFilterCoder::SetOutStreamSize(const UInt64 *outSize))
in SetOutStreamSize() argument 435 if (outSize)
in SetOutStreamSize() 437 _outSize = *outSize;
in SetOutStreamSize() 88 Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, const UInt64 * , const UInt64 *outSize, ICompressProgressInfo *progress) Code() argument
|
/third_party/lzma/CPP/Windows/ |
H A D | FileIO.h | 125 LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned, LPOVERLAPPED overlapped = NULL) const
in DeviceIoControl() 128 outBuffer, outSize, bytesReturned, overlapped));
in DeviceIoControl() 131 bool DeviceIoControlOut(DWORD controlCode, LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned) const
in DeviceIoControlOut() argument 133 return DeviceIoControl(controlCode, NULL, 0, outBuffer, outSize, bytesReturned);
in DeviceIoControlOut() 136 bool DeviceIoControlOut(DWORD controlCode, LPVOID outBuffer, DWORD outSize) const
in DeviceIoControlOut() 139 return DeviceIoControlOut(controlCode, outBuffer, outSize, &bytesReturned);
in DeviceIoControlOut() 124 DeviceIoControl(DWORD controlCode, LPVOID inBuffer, DWORD inSize, LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned, LPOVERLAPPED overlapped = NULL) const DeviceIoControl() argument
|
/third_party/vk-gl-cts/framework/platform/android/ |
H A D | tcuAndroidNativeActivity.cpp | 39 static void* onSaveInstanceStateCallback (ANativeActivity* activity, size_t* outSize) in onSaveInstanceStateCallback() argument 41 return static_cast<tcu::Android::NativeActivity*>(activity->instance)->onSaveInstanceState(outSize); in onSaveInstanceStateCallback() 150 void* NativeActivity::onSaveInstanceState (size_t* outSize) in onSaveInstanceState() argument 152 *outSize = 0; in onSaveInstanceState()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmIntegerDotProductTests.cpp | 200 size_t elementSize, size_t outSize) in addDotProductExtensionAndFeatures() 206 if ((!packingInfo.packed && elementSize == 8) || outSize == 8) in addDotProductExtensionAndFeatures() 213 if (elementSize == 16 || outSize == 16) in addDotProductExtensionAndFeatures() 257 const struct DotProductVectorInfo &vectorInfo, size_t outSize, in generateIntegerDotProductTypeDeclsAndStrideDecors() 266 signedScalarArraysMask |= static_cast<int>(outSize); in generateIntegerDotProductTypeDeclsAndStrideDecors() 268 unsignedScalarArraysMask |= static_cast<int>(outSize); in generateIntegerDotProductTypeDeclsAndStrideDecors() 352 size_t outSize, bool signedLHSAndResult, bool signedRHS, bool acc) in generateIntegerDotProductCode() 359 const string outputCapability(outSize != 32 ? in generateIntegerDotProductCode() 360 "OpCapability Int" + de::toString(outSize) + "\n" : ""); in generateIntegerDotProductCode() 361 const string elementCapability(!packingInfo.packed && outSize ! in generateIntegerDotProductCode() 198 addDotProductExtensionAndFeatures(ComputeShaderSpec &spec, const struct DotProductPackingInfo &packingInfo, size_t elementSize, size_t outSize) addDotProductExtensionAndFeatures() argument 255 generateIntegerDotProductTypeDeclsAndStrideDecors(std::ostringstream &typeDeclsStream, std::ostringstream &strideDecorsStream, const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo, size_t outSize, bool signedLHSAndResult, bool signedRHS) generateIntegerDotProductTypeDeclsAndStrideDecors() argument 351 generateIntegerDotProductCode(const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo, size_t outSize, bool signedLHSAndResult, bool signedRHS, bool acc) generateIntegerDotProductCode() argument 501 getDotProductTestName(const struct DotProductInputInfo &inputInfo, const struct DotProductPackingInfo &packingInfo, size_t outSize) getDotProductTestName() argument 518 size_t outSize = sizeof(OutputT) * 8; addOpSDotKHRComputeTests() local 605 size_t outSize = sizeof(OutputT) * 8; addOpUDotKHRComputeTests() local 693 size_t outSize = sizeof(OutputT) * 8; addOpSUDotKHRComputeTests() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsmIntegerDotProductTests.cpp | 200 size_t elementSize, size_t outSize) in addDotProductExtensionAndFeatures() 206 if ((!packingInfo.packed && elementSize == 8) || outSize == 8) in addDotProductExtensionAndFeatures() 213 if (elementSize == 16 || outSize == 16) in addDotProductExtensionAndFeatures() 257 const struct DotProductVectorInfo &vectorInfo, size_t outSize, in generateIntegerDotProductTypeDeclsAndStrideDecors() 266 signedScalarArraysMask |= static_cast<int>(outSize); in generateIntegerDotProductTypeDeclsAndStrideDecors() 268 unsignedScalarArraysMask |= static_cast<int>(outSize); in generateIntegerDotProductTypeDeclsAndStrideDecors() 352 size_t outSize, bool signedLHSAndResult, bool signedRHS, bool acc) in generateIntegerDotProductCode() 359 const string outputCapability(outSize != 32 ? in generateIntegerDotProductCode() 360 "OpCapability Int" + de::toString(outSize) + "\n" : ""); in generateIntegerDotProductCode() 361 const string elementCapability(!packingInfo.packed && outSize ! in generateIntegerDotProductCode() 198 addDotProductExtensionAndFeatures(ComputeShaderSpec &spec, const struct DotProductPackingInfo &packingInfo, size_t elementSize, size_t outSize) addDotProductExtensionAndFeatures() argument 255 generateIntegerDotProductTypeDeclsAndStrideDecors(std::ostringstream &typeDeclsStream, std::ostringstream &strideDecorsStream, const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo, size_t outSize, bool signedLHSAndResult, bool signedRHS) generateIntegerDotProductTypeDeclsAndStrideDecors() argument 351 generateIntegerDotProductCode(const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo, size_t outSize, bool signedLHSAndResult, bool signedRHS, bool acc) generateIntegerDotProductCode() argument 501 getDotProductTestName(const struct DotProductInputInfo &inputInfo, const struct DotProductPackingInfo &packingInfo, size_t outSize) getDotProductTestName() argument 518 size_t outSize = sizeof(OutputT) * 8; addOpSDotKHRComputeTests() local 605 size_t outSize = sizeof(OutputT) * 8; addOpUDotKHRComputeTests() local 693 size_t outSize = sizeof(OutputT) * 8; addOpSUDotKHRComputeTests() local [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | measunit_extra.cpp | 167 * @param outSize The size of `out` and `outCategories`. 175 int32_t *outCategories, int32_t outSize, in SimpleUnitIdentifiersSink() 177 : outArray(out), outCategories(outCategories), outSize(outSize), trieBuilder(trieBuilder), in SimpleUnitIdentifiersSink() 193 if (outIndex + table.getSize() > outSize) { 204 U_ASSERT(outIndex < outSize); 242 int32_t outSize; 269 * @param outSize The size of the `out` array. 274 explicit CategoriesSink(const UChar **out, int32_t &outSize, BytesTrieBuilder &trieBuilder) 275 : outQuantitiesArray(out), outSize(outSiz 174 SimpleUnitIdentifiersSink(StringPiece quantitiesTrieData, const char **out, int32_t *outCategories, int32_t outSize, BytesTrieBuilder &trieBuilder, int32_t trieValueOffset) SimpleUnitIdentifiersSink() argument [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | measunit_extra.cpp | 167 * @param outSize The size of `out` and `outCategories`. 175 int32_t *outCategories, int32_t outSize, in SimpleUnitIdentifiersSink() 177 : outArray(out), outCategories(outCategories), outSize(outSize), trieBuilder(trieBuilder), in SimpleUnitIdentifiersSink() 193 if (outIndex + table.getSize() > outSize) { 204 U_ASSERT(outIndex < outSize); 242 int32_t outSize; 269 * @param outSize The size of the `out` array. 274 explicit CategoriesSink(const char16_t **out, int32_t &outSize, BytesTrieBuilder &trieBuilder) 275 : outQuantitiesArray(out), outSize(outSiz 174 SimpleUnitIdentifiersSink(StringPiece quantitiesTrieData, const char **out, int32_t *outCategories, int32_t outSize, BytesTrieBuilder &trieBuilder, int32_t trieValueOffset) SimpleUnitIdentifiersSink() argument [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | measunit_extra.cpp | 168 * @param outSize The size of `out` and `outCategories`. 176 int32_t *outCategories, int32_t outSize, in SimpleUnitIdentifiersSink() 178 : outArray(out), outCategories(outCategories), outSize(outSize), trieBuilder(trieBuilder), in SimpleUnitIdentifiersSink() 194 if (outIndex + table.getSize() > outSize) { in put() 205 U_ASSERT(outIndex < outSize); in put() 243 int32_t outSize; 270 * @param outSize The size of the `out` array. 275 explicit CategoriesSink(const UChar **out, int32_t &outSize, BytesTrieBuilder &trieBuilder) 276 : outQuantitiesArray(out), outSize(outSiz 175 SimpleUnitIdentifiersSink(StringPiece quantitiesTrieData, const char **out, int32_t *outCategories, int32_t outSize, BytesTrieBuilder &trieBuilder, int32_t trieValueOffset) SimpleUnitIdentifiersSink() argument [all...] |
/third_party/lzma/CS/7zip/ |
H A D | ICoder.cs | 31 /// <param name="outSize">
34 void SetProgress(Int64 inSize, Int64 outSize);
in SetProgress() argument 51 /// <param name="outSize">
61 Int64 inSize, Int64 outSize, ICodeProgress progress);
in Code() 60 Code(System.IO.Stream inStream, System.IO.Stream outStream, Int64 inSize, Int64 outSize, ICodeProgress progress) Code() argument
|
/third_party/lzma/CS/7zip/Compress/LzmaAlone/ |
H A D | LzmaBench.cs | 152 public void SetProgress(Int64 inSize, Int64 outSize)
in SetProgress() argument 194 static UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 outSize, UInt64 inSize)
in GetDecompressRating() argument 196 UInt64 numCommands = inSize * 220 + outSize * 20;
in GetDecompressRating() 312 UInt64 outSize = kBufferSize;
in LzmaBenchmark() 314 decoder.Code(compressedStream, crcOutStream, 0, (Int64)outSize, null);
in LzmaBenchmark()
|
/third_party/lzma/Java/SevenZip/ |
H A D | LzmaBench.java | 202 public void SetProgress(long inSize, long outSize)
in SetProgress() argument 244 static long GetDecompressRating(long elapsedTime, long outSize, long inSize)
in GetDecompressRating() argument 246 long numCommands = inSize * 220 + outSize * 20;
in GetDecompressRating() 365 long outSize = kBufferSize;
in LzmaBenchmark() 367 if (!decoder.Code(inputCompressedStream, crcOutStream, outSize))
in LzmaBenchmark()
|
H A D | LzmaAlone.java | 234 long outSize = 0;
in main() 240 outSize |= ((long)v) << (8 * i);
in main() 242 if (!decoder.Code(inStream, outStream, outSize))
in main()
|