/third_party/json/tests/thirdparty/Fuzzer/ |
H A D | FuzzerCrossOver.cpp | 29 size_t InSize = Size1; in CrossOver() local 35 if (*InPos < InSize) { in CrossOver() 36 size_t InSizeLeft = InSize - *InPos; in CrossOver() 45 InSize = CurrentlyUsingFirstData ? Size2 : Size1; in CrossOver()
|
/third_party/lzma/CS/7zip/Compress/LzmaAlone/ |
H A D | LzmaBench.cs | 149 public Int64 InSize;
field in SevenZip.LzmaBench.CProgressInfo 151 public void Init() { InSize = 0; }
in Init() 154 if (inSize >= ApprovedStart && InSize == 0)
in SetProgress() 157 InSize = inSize;
in SetProgress() 302 if (progressInfo.InSize == 0)
in LzmaBenchmark() 320 UInt64 benchSize = kBufferSize - (UInt64)progressInfo.InSize;
in LzmaBenchmark()
|
/third_party/lzma/Java/SevenZip/ |
H A D | LzmaBench.java | 198 public long InSize;
field in LzmaBench.CProgressInfo 201 { InSize = 0; }
in Init() 204 if (inSize >= ApprovedStart && InSize == 0)
in SetProgress() 207 InSize = inSize;
in SetProgress() 356 if (progressInfo.InSize == 0)
in LzmaBenchmark() 373 long benchSize = kBufferSize - (long)progressInfo.InSize;
in LzmaBenchmark()
|
/third_party/lzma/CPP/7zip/Common/ |
H A D | ProgressUtils.cpp | 11 InSize(0),
in CLocalProgress() 25 UInt64 inSize2 = InSize;
in SetRatioInfo()
|
H A D | ProgressUtils.h | 24 UInt64 InSize;
variable
|
/third_party/lame/ACM/ |
H A D | ACMStream.cpp | 321 DWORD InSize = a_StreamHeader->cbSrcLength / 2, OutSize = a_StreamHeader->cbDstLength; // 2 for 8<->16 bits in ConvertBuffer() local 327 dwSamples = InSize / lame_get_num_channels( gfp ); in ConvertBuffer() 343 my_debug->OutPut(DEBUG_LEVEL_FUNC_CODE, "UsedSize = %d / EncodedSize = %d, result = %d (%d <= %d)", InSize, OutSize, result, a_StreamHeader->cbDstLengthUsed, a_StreamHeader->cbDstLength); in ConvertBuffer()
|
/third_party/lzma/CPP/7zip/Archive/ |
H A D | XzHandler.cpp | 348 case kpidPhySize: if (stat) prop = stat->InSize; break;
in GetArchiveProperty() 410 case kpidPackSize: if (stat) prop = stat->InSize; break;
in GetProperty() 553 RINOK(InStream_GetSize_SeekToEnd(inStream, _stat.InSize))
in Open2() 556 RINOK(callback->SetTotal(NULL, &_stat.InSize))
in Open2() 1035 extractCallback->SetTotal(stat->InSize);
in Extract() 1314 RINOK(updateCallback->SetTotal(stat->InSize))
in UpdateItems()
|
H A D | SplitHandler.cpp | 310 lps->InSize = lps->OutSize = currentTotalSize;
in Extract()
|
H A D | LzmaHandler.cpp | 501 lps->InSize = packSize;
|
/third_party/lzma/CPP/7zip/Compress/ |
H A D | XzDecoder.cpp | 130 *value = Stat.InSize;
in GetInStreamProcessedSize()
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | Extract.cpp | 550 ecs->LocalProgressSpec->InSize += packProcessed;
in Extract() 568 st.PackSize = ecs->LocalProgressSpec->InSize;
in Extract()
|
H A D | HashCalc.cpp | 1516 lps->InSize = lps->OutSize = 0;
in Extract() 1622 lps->InSize += hp.Hash.Size();
in Extract() 1838 lps->InSize = complexity;
in UpdateItems()
|
H A D | ArchiveExtractCallback.cpp | 427 packCur = LocalProgressSpec->InSize;
in SetCompleted()
|
H A D | OpenArchive.cpp | 393 lps->InSize = totalSize;
in Extract()
|
/third_party/lzma/C/ |
H A D | Xz.h | 474 UInt64 InSize; // pack size processed. That value doesn't include the data after
member
|
H A D | XzDec.c | 2332 p->InSize = 0;
in XzStatInfo_Clear() 2555 stat->InSize = inProcessed;
in XzStatInfo_SetStat() 2609 stat->InSize -= extraSize;
in XzStatInfo_SetStat() 2733 stat->InSize = p->mtc.inProcessed;
in XzDecMt_Decode()
|
/third_party/lzma/CPP/7zip/Archive/7z/ |
H A D | 7zExtract.cpp | 307 for (UInt32 i = 0;; lps->OutSize += curUnpacked, lps->InSize += curPacked)
in Extract()
|
H A D | 7zUpdate.cpp | 2556 lps->InSize += curUnpackSize;
in Update() 2883 lps->InSize += procSize;
in Update() 2884 // lps->InSize += curFolderUnpackSize;
in Update()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | SelectionDAG.h | 881 /// InSize bytes are set up inside CALLSEQ_START..CALLSEQ_END sequence and 883 SDValue getCALLSEQ_START(SDValue Chain, uint64_t InSize, uint64_t OutSize, in getCALLSEQ_START() argument 887 getIntPtrConstant(InSize, DL, true), in getCALLSEQ_START()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeVectorTypes.cpp | 3512 unsigned InSize = InVT.getSizeInBits(); in WidenVecRes_BITCAST() 3514 if (WidenSize % InSize == 0 && InVT != MVT::x86mmx) { in WidenVecRes_BITCAST() 3519 unsigned NewNumElts = WidenSize / InSize; in WidenVecRes_BITCAST()
|
H A D | TargetLowering.cpp | 3363 unsigned InSize = N0.getOperand(0).getValueSizeInBits(); in SimplifySetCC() local 3368 C1.getBitWidth() - InSize))) { in SimplifySetCC() 3404 SDValue NewConst = DAG.getConstant(C1.trunc(InSize), dl, newVT); in SimplifySetCC()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 22468 int InSize = InSVT.getSizeInBits() * NumElts; 22469 In = extractSubVector(In, 0, DAG, dl, std::max(InSize, 128)); [all...] |