HomeSort by relevance Sort by last modified time
    Searched refs:InSize (Results 1 - 16 of 16) sorted by null

  /external/lzma/CPP/7zip/Archive/Common/
CrossThreadProgress.cpp 7 STDMETHODIMP CCrossThreadProgress::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize)
9 InSize = inSize;
CrossThreadProgress.h 15 const UInt64 *InSize;
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;
24 if (inSize)
25 inSizeNew += (*inSize);
ProgressUtils.h 20 UInt64 InSize;
31 STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize);
  /external/lzma/Java/SevenZip/
LzmaBench.java 198 public long InSize;
201 { InSize = 0; }
202 public void SetProgress(long inSize, long outSize)
204 if (inSize >= ApprovedStart && InSize == 0)
207 InSize = inSize;
244 static long GetDecompressRating(long elapsedTime, long outSize, long inSize)
246 long numCommands = inSize * 220 + outSize * 20;
356 if (progressInfo.InSize == 0)
    [all...]
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs 149 public Int64 InSize;
151 public void Init() { InSize = 0; }
152 public void SetProgress(Int64 inSize, Int64 outSize)
154 if (inSize >= ApprovedStart && InSize == 0)
157 InSize = inSize;
194 static UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 outSize, UInt64 inSize)
196 UInt64 numCommands = inSize * 220 + outSize * 20;
302 if (progressInfo.InSize == 0)
    [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 315 uint64_t InSize = Context.getTypeSize(InTy);
316 if (OutSize == InSize && InputDomain == OutputDomain &&
331 SmallerValueMentioned |= InSize < OutSize;
336 SmallerValueMentioned |= OutSize < InSize;
  /external/lzma/CPP/7zip/UI/Common/
Extract.cpp 250 extractCallbackSpec->LocalProgressSpec->InSize += packProcessed;
261 stat.PackSize = extractCallbackSpec->LocalProgressSpec->InSize;
ArchiveExtractCallback.cpp 95 UInt64 packCur = LocalProgressSpec->InSize + MyMultDiv64(*completeValue, _unpTotal, _packTotal);
103 STDMETHODIMP CArchiveExtractCallback::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize)
106 return _localProgress->SetRatioInfo(inSize, outSize);
  /external/lzma/CPP/7zip/Archive/7z/
7zExtract.cpp 162 lps->InSize = totalPacked;
7zUpdate.cpp 972 lps->InSize += newFolder.GetUnpackSize();
1082 lps->InSize += folderItem.GetUnpackSize();
  /external/lzma/CPP/7zip/Archive/
XzHandler.cpp 300 static SRes OpenCallbackProgress(void *pp, UInt64 inSize, UInt64 /* outSize */)
303 p->Res = p->OpenCallback->SetCompleted(NULL, &inSize);
492 UInt32 inSize = 0;
506 if (inPos == inSize)
508 inPos = inSize = 0;
509 RINOK(_seqStream->Read(xzu.InBuf, kInBufSize, &inSize));
512 SizeT inLen = inSize - inPos;
518 (inSize == 0 ? CODER_FINISH_END : CODER_FINISH_ANY), &status);
524 lps->InSize += inLen;
539 _packSize = lps->InSize;
    [all...]
LzmaHandler.cpp 371 lps->InSize = _packSize = decoder.GetInputProcessedSize();
SplitHandler.cpp 326 lps->InSize = lps->OutSize = currentTotalSize;
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp     [all...]
TargetLowering.cpp     [all...]

Completed in 135 milliseconds