Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dslot-set.h89 int start_bucket, start_cell, start_bit; in RemoveRange() local
90 SlotToIndices(start_offset, &start_bucket, &start_cell, &start_bit); in RemoveRange()
95 if (start_bucket == end_bucket && start_cell == end_cell) { in RemoveRange()
96 ClearCell(start_bucket, start_cell, ~(start_mask | end_mask)); in RemoveRange()
100 int current_cell = start_cell; in RemoveRange()
241 void ClearBucket(base::AtomicValue<uint32_t>* bucket, int start_cell, in ClearBucket() argument
243 DCHECK_GE(start_cell, 0); in ClearBucket()
245 int current_cell = start_cell; in ClearBucket()