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

  /external/lzma/C/
7z.h 46 UInt32 NumPackStreams;
81 UInt32 NumPackStreams;
84 UInt64 *PackPositions; // NumPackStreams + 1
7zDec.c 307 if (f->NumPackStreams != 1 || f->PackStreams[0] != 0 || f->NumBonds != 0)
321 || f->NumPackStreams != 1
352 if (f->NumPackStreams != 4
7zArcIn.c 95 p->NumPackStreams = 0;
385 RINOK(SzReadNumber32(sd, &p->NumPackStreams));
388 MY_ALLOC(UInt64, p->PackPositions, (size_t)p->NumPackStreams + 1, alloc);
392 UInt32 numPackStreams = p->NumPackStreams;
393 for (i = 0; i < numPackStreams; i++)
414 RINOK(SkipBitUi32s(sd, p->NumPackStreams));
440 f->NumPackStreams = 0;
515 f->NumPackStreams = 1;
522 UInt32 numBonds, numPackStreams;
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zIn.h 49 CNum NumPackStreams;
52 CObjArray<UInt64> PackPositions; // NumPackStreams + 1
90 CFolders(): NumPackStreams(0), NumFolders(0) {}
94 NumPackStreams = 0;
7zIn.cpp 417 UInt32 numPackStreams = numInStreams - numBonds;
418 folder.PackStreams.SetSize(numPackStreams);
420 if (numPackStreams == 1)
432 for (i = 0; i < numPackStreams; i++)
589 CNum numPackStreams = ReadNum();
592 f.PackPositions.Alloc(numPackStreams + 1);
593 f.NumPackStreams = numPackStreams;
595 for (CNum i = 0; i < numPackStreams; i++)
603 f.PackPositions[numPackStreams] = sum;
    [all...]

Completed in 1048 milliseconds