Searched refs:cell_ (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/heap/ |
D | marking.h | 19 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 …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_addrhashmap.h | 83 Cell *cell_; variable 136 return &cell_->val; 146 return cell_ != nullptr; in exists() 163 h->cell_ = nullptr; in acquire() 178 h->cell_ = c; in acquire() 192 h->cell_ = c; in acquire() 208 h->cell_ = c; in acquire() 225 h->cell_ = c; in acquire() 247 h->cell_ = c; in acquire() 280 h->cell_ = c; in acquire() [all …]
|
/external/tensorflow/tensorflow/core/lib/monitoring/ |
D | timed.h | 30 : cell_(cell), scale_(scale), start_(EnvTime::NowNanos()) {} in cell_() function 32 ~Timed() { cell_->Add(scale_ * (EnvTime::NowNanos() - start_)); } in ~Timed() 35 T* cell_ = nullptr;
|
/external/v8/src/compiler/ |
D | compilation-dependencies.cc | 263 : cell_(cell), type_(type), read_only_(read_only) { in GlobalPropertyDependency() 264 DCHECK_EQ(type_, cell_.property_details().cell_type()); in GlobalPropertyDependency() 265 DCHECK_EQ(read_only_, cell_.property_details().IsReadOnly()); in GlobalPropertyDependency() 269 Handle<PropertyCell> cell = cell_.object(); in IsValid() 272 if (cell->value() == *(cell_.isolate()->factory()->the_hole_value())) { in IsValid() 285 DependentCode::InstallDependency(cell_.isolate(), code, cell_.object(), in Install() 290 PropertyCellRef cell_; member in v8::internal::compiler::GlobalPropertyDependency 297 explicit ProtectorDependency(const PropertyCellRef& cell) : cell_(cell) { in ProtectorDependency() 298 DCHECK_EQ(cell_.value().AsSmi(), Protectors::kProtectorValid); in ProtectorDependency() 302 Handle<PropertyCell> cell = cell_.object(); in IsValid() [all …]
|
/external/tensorflow/tensorflow/lite/kernels/ |
D | lstm_eval_test.cc | 273 PackWeightToTensor(&cell_tensor_, cell_, cell_size_); in GetCell() 274 cell_tensor_.data.i16 = cell_.data(); in GetCell() 531 std::vector<int16_t> cell_ = { member in tflite::__anon7ec0fcda0111::QuantizedLstmParam
|