OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kBlockBits
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/tcmalloc/chromium/src/
addressmap-inl.h
158
static const int
kBlockBits
= 7;
159
static const int kBlockSize = 1 <<
kBlockBits
;
172
static const Number kClusterSize = 1 << (
kBlockBits
+ kClusterBits);
215
const Number cluster_id = address >> (
kBlockBits
+ kClusterBits);
236
return (address >>
kBlockBits
) & (kClusterBlocks - 1);
/external/chromium_org/third_party/tcmalloc/vendor/src/
addressmap-inl.h
158
static const int
kBlockBits
= 7;
159
static const int kBlockSize = 1 <<
kBlockBits
;
172
static const Number kClusterSize = 1 << (
kBlockBits
+ kClusterBits);
215
const Number cluster_id = address >> (
kBlockBits
+ kClusterBits);
236
return (address >>
kBlockBits
) & (kClusterBlocks - 1);
Completed in 116 milliseconds