Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/heap/
Dmarking.h19 inline MarkBit(CellType* cell, CellType mask) : cell_(cell), mask_(mask) {} in MarkBit()
23 return cell_ == other.cell_ && mask_ == other.mask_;
31 return MarkBit(cell_ + 1, 1); in Next()
33 return MarkBit(cell_, new_mask); in Next()
50 CellType* cell_; variable
60 CellType old_value = *cell_;
62 *cell_ = old_value | mask_;
68 return base::AsAtomic32::SetBits(cell_, mask_, mask_);
73 return (*cell_ & mask_) != 0;
78 return (base::AsAtomic32::Acquire_Load(cell_) & mask_) != 0;
[all …]
/third_party/node/deps/v8/src/compiler/
Dcompilation-dependencies.cc800 cell_(cell), in GlobalPropertyDependency()
803 DCHECK_EQ(type_, cell_.property_details().cell_type()); in GlobalPropertyDependency()
804 DCHECK_EQ(read_only_, cell_.property_details().IsReadOnly()); in GlobalPropertyDependency()
808 Handle<PropertyCell> cell = cell_.object(); in IsValid()
811 if (cell->value() == *(cell_.isolate()->factory()->the_hole_value())) { in IsValid()
819 deps->Register(cell_.object(), DependentCode::kPropertyCellChangedGroup); in Install()
825 return base::hash_combine(h(cell_), static_cast<int>(type_), read_only_); in Hash()
830 return cell_.equals(zat->cell_) && type_ == zat->type_ && in Equals()
834 const PropertyCellRef cell_; member in v8::internal::compiler::__anonfeb74f180211::GlobalPropertyDependency
842 : CompilationDependency(kProtector), cell_(cell) {} in ProtectorDependency()
[all …]
/third_party/chromium/patch/
D0004-ohos-3.2-Beta5.patch45448 const PropertyCellRef cell_;