OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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/webm/
webm_cluster_parser_unittest.cc
311
const int
kClusterSize
= sizeof(kClusterData);
313
int result = parser_->Parse(kClusterData,
kClusterSize
);
314
EXPECT_EQ(result,
kClusterSize
);
Completed in 178 milliseconds