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

  /external/lzma/CPP/Windows/
FileIO.cpp 159 // maybe we must decrease kClusterSize to 1 << 12, if we want correct size at tail
160 static const UInt32 kClusterSize = 1 << 14;
161 UInt64 pos = Size & ~(UInt64)(kClusterSize - 1);
165 Byte *buf = (Byte *)MidAlloc(kClusterSize);
174 if (!Read1(buf, kClusterSize, processed))
180 if (processed != kClusterSize)
182 pos += kClusterSize;
187 pos -= kClusterSize;
195 buf = (Byte *)MidAlloc(kClusterSize);
201 if (!Read1(buf, kClusterSize, processed))
    [all...]
  /external/lzma/CPP/7zip/Common/
FileStreams.cpp 33 static const UInt32 kClusterSize = 1 << 18;
78 const UInt32 mask = kClusterSize - 1;
121 UInt32 readSize = kClusterSize;
123 readSize = (UInt32)MyMin(File.Size - PhyPos, (UInt64)kClusterSize);
127 Buf = (Byte *)MidAlloc(kClusterSize);

Completed in 152 milliseconds