Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/heap/
Dslot-set.h34 PossiblyEmptyBuckets() : bitmap_(kNullAddress) {} in PossiblyEmptyBuckets()
36 : bitmap_(other.bitmap_) { in PossiblyEmptyBuckets()
37 other.bitmap_ = kNullAddress; in PossiblyEmptyBuckets()
46 bitmap_ = kNullAddress; in Initialize()
54 bitmap_ = kNullAddress; in Release()
62 bitmap_ |= static_cast<uintptr_t>(1) << (bucket_index + 1); in Insert()
76 return bitmap_ & (static_cast<uintptr_t>(1) << (bucket_index + 1)); in Contains()
82 bool IsEmpty() { return bitmap_ == kNullAddress; } in IsEmpty()
85 Address bitmap_;
90 bool IsAllocated() { return bitmap_ & kPointerTag; } in IsAllocated()
[all …]
Dmark-compact-inl.h274 return iterator(chunk_, bitmap_, start_); in begin()
279 return iterator(chunk_, bitmap_, end_); in end()
Dmark-compact.h140 bitmap_(bitmap), in LiveObjectRange()
151 Bitmap* bitmap_; variable
/third_party/node/deps/v8/src/heap/cppgc/
Dsweeper.cc54 bitmap_ = &page.object_start_bitmap(); in VisitNormalPage()
63 CHECK(bitmap_->CheckBit<AccessMode::kAtomic>(raw_header)); in VisitHeapObjectHeader()
66 CHECK_EQ(prev_, bitmap_->FindHeader<AccessMode::kAtomic>(raw_header - 1)); in VisitHeapObjectHeader()
72 PlatformAwareObjectStartBitmap* bitmap_ = nullptr; member in cppgc::internal::__anon9ffa836b0111::ObjectStartBitmapVerifier