Home
last modified time | relevance | path

Searched refs:kBitsPerCellLog2 (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/heap/
Dmarking.cc18 unsigned int start_cell_index = start_index >> Bitmap::kBitsPerCellLog2; in AllBitsSetInRange()
21 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2; in AllBitsSetInRange()
47 unsigned int start_cell_index = start_index >> Bitmap::kBitsPerCellLog2; in AllBitsClearInRange()
50 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2; in AllBitsClearInRange()
Dmarking.h97 static const uint32_t kBitsPerCellLog2 = 5; variable
100 static const uint32_t kBytesPerCellLog2 = kBitsPerCellLog2 - kBitsPerByteLog2;
110 return (length + kBitsPerCell - 1) >> kBitsPerCellLog2; in CellsForLength()
116 return index >> kBitsPerCellLog2; in IndexToCell()
138 MarkBit::CellType* cell = this->cells() + (index >> kBitsPerCellLog2); in MarkBitFromIndex()
276 unsigned int start_cell_index = start_index >> Bitmap::kBitsPerCellLog2; in SetRange()
279 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2; in SetRange()
307 unsigned int start_cell_index = start_index >> Bitmap::kBitsPerCellLog2; in ClearRange()
310 unsigned int end_cell_index = end_index >> Bitmap::kBitsPerCellLog2; in ClearRange()
Dslot-set.h413 static const int kBitsPerCellLog2 = 5; variable
415 static const int kBitsPerBucketLog2 = kCellsPerBucketLog2 + kBitsPerCellLog2;
586 static_cast<int>((slot >> kBitsPerCellLog2) & (kCellsPerBucket - 1)); in SlotToIndices()
Dmark-compact-inl.h222 end_mark_bit_index >> Bitmap::kBitsPerCellLog2; in AdvanceToNextValidObject()
/external/v8/src/builtins/
Dbuiltins-internal-gen.cc154 int shift = Bitmap::kBitsPerCellLog2 + kTaggedSizeLog2 - in GetMarkBit()
165 r1 = WordAnd(r1, IntPtrConstant((1 << Bitmap::kBitsPerCellLog2) - 1)); in GetMarkBit()
288 WordShr(slot_offset, SlotSet::kBitsPerCellLog2 + kTaggedSizeLog2 - in SetBitInCell()