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

  /external/lzma/CPP/7zip/Archive/7z/
7zOut.h 116 CRecordVector<UInt64> PackSizes;
147 PackSizes.Clear();
169 PackSizes.ReserveDown();
189 PackSizes.IsEmpty() &&
251 const CRecordVector<UInt64> &packSizes,
271 CRecordVector<UInt64> &packSizes, CObjectVector<CFolder> &folders, COutFolders &outFolders);
7zUpdate.cpp     [all...]
7zOut.cpp 358 const CRecordVector<UInt64> &packSizes,
361 if (packSizes.IsEmpty())
365 WriteNumber(packSizes.Size());
367 FOR_VECTOR (i, packSizes)
368 WriteNumber(packSizes[i]);
514 CRecordVector<UInt64> &packSizes, CObjectVector<CFolder> &folders, COutFolders &outFolders)
529 folders.AddNew(), outFolders.CoderUnpackSizes, unpackSize, SeqStream, packSizes, NULL))
545 FOR_VECTOR (i, db.PackSizes)
546 packSize += db.PackSizes[i];
558 WritePackInfo(0, db.PackSizes, db.PackCRCs);
    [all...]
  /external/lzma/CPP/7zip/Archive/Common/
CoderMixer2.cpp 154 void CCoder::SetCoderInfo(const UInt64 *unpackSize, const UInt64 * const *packSizes)
167 PackSizes.ClearAndSetSize((unsigned)NumStreams);
172 if (packSizes && packSizes[i])
174 PackSizes[i] = *(packSizes[i]);
175 PackSizePointers[i] = &PackSizes[i];
179 PackSizes[i] = 0;
826 PackSizePointers[i] = &PackSizes[i];
CoderMixer2.h 201 CRecordVector<UInt64> PackSizes;
206 void SetCoderInfo(const UInt64 *unpackSize, const UInt64 * const *packSizes);
276 virtual void SetCoderInfo(unsigned coderIndex, const UInt64 *unpackSize, const UInt64 * const *packSizes) = 0;
341 virtual void SetCoderInfo(unsigned coderIndex, const UInt64 *unpackSize, const UInt64 * const *packSizes)
342 { _coders[coderIndex].SetCoderInfo(unpackSize, packSizes); }
422 virtual void SetCoderInfo(unsigned coderIndex, const UInt64 *unpackSize, const UInt64 * const *packSizes)
423 { _coders[coderIndex].SetCoderInfo(unpackSize, packSizes); }

Completed in 391 milliseconds