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

  /external/lzma/CPP/7zip/Common/
FileStreams.cpp 62 static const UInt32 kClusterSize = 1 << 18;
101 const UInt32 mask = kClusterSize - 1;
144 UInt32 readSize = kClusterSize;
146 readSize = (UInt32)MyMin(File.Length - PhyPos, (UInt64)kClusterSize);
150 Buffer = (Byte *)MidAlloc(kClusterSize);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
addressmap-inl.h 172 static const Number kClusterSize = 1 << (kBlockBits + kClusterBits);
391 if (num < kClusterSize) return NULL; // first cluster
393 num |= kClusterSize - 1; // start at the last block of previous cluster
394 num -= kClusterSize;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
addressmap-inl.h 172 static const Number kClusterSize = 1 << (kBlockBits + kClusterBits);
391 if (num < kClusterSize) return NULL; // first cluster
393 num |= kClusterSize - 1; // start at the last block of previous cluster
394 num -= kClusterSize;
  /external/chromium_org/media/formats/webm/
webm_cluster_parser_unittest.cc 464 const int kClusterSize = sizeof(kClusterData);
466 int result = parser_->Parse(kClusterData, kClusterSize);
467 EXPECT_EQ(kClusterSize, result);
    [all...]

Completed in 1813 milliseconds