OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kBucketShift
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAlloc.h
115
static const size_t
kBucketShift
= (kAllocationGranularity == 8) ? 3 : 2;
337
size_t size = index <<
kBucketShift
;
470
size_t index = size >>
kBucketShift
;
472
ASSERT(size == index <<
kBucketShift
);
PartitionAllocTest.cpp
65
static const size_t kTestBucketIndex = kRealAllocSize >> WTF::
kBucketShift
;
82
size_t bucketIdx = realSize >> WTF::
kBucketShift
;
468
size_t bucketIdx = (bigSize + kExtraAllocSize) >> WTF::
kBucketShift
;
520
bucketIdx = (mediumSize + kExtraAllocSize) >> WTF::
kBucketShift
;
535
bucketIdx = (smallSize + kExtraAllocSize) >> WTF::
kBucketShift
;
552
bucketIdx = (verySmallSize + kExtraAllocSize) >> WTF::
kBucketShift
;
615
bucket = &allocator.root()->buckets()[size >> WTF::
kBucketShift
];
PartitionAlloc.cpp
454
size_t newIndex = allocSize >>
kBucketShift
;
467
size_t copySize = oldIndex <<
kBucketShift
;
Completed in 27 milliseconds