/third_party/backends/backend/genesys/ |
H A D | row_buffer.h | 62 bool empty() const { return is_linear_ && first_ == last_; } in empty() 69 return first_ == last_; in full() 77 std::rotate(data_.begin(), data_.begin() + row_bytes_ * first_, data_.end()); in linearize() 79 first_ = 0; in linearize() 90 first_++; in pop_front() 91 if (first_ == last_) { in pop_front() 92 first_ = 0; in pop_front() 95 } else if (first_ == buffer_end_) { in pop_front() 96 first_ = 0; in pop_front() 107 if (first_ in push_front() 182 std::size_t first_ = 0; global() member in genesys::RowBuffer [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | persistent-map.h | 323 auto pair = *first_; in operator *() 330 return std::make_tuple(pair.first, first_.def_value(), pair.second); in operator *() 336 iterator old_first = first_; in operator ++() 340 ++first_; in operator ++() 341 DCHECK(old_first < first_); in operator ++() argument 347 return *this = double_iterator(first_, second_); in operator ++() 351 : first_(first), second_(second) { 352 if (first_ == second_) { 354 } else if (first_ < second_) { 358 DCHECK(second_ < first_); [all...] |
/third_party/vixl/test/ |
H A D | test-runner.h | 50 if (first_ == NULL) { in Test() 52 first_ = this; in Test() 88 static Test* first() { return first_; } in first() 127 static Test* first_; member in vixl::Test
|
H A D | test-runner.cc | 34 vixl::Test* vixl::Test::first_ = NULL; member in vixl::Test
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-dotprinter.cc | 64 explicit AttributePrinter(std::ostream& os) : os_(os), first_(true) {} in AttributePrinter() 66 if (first_) { in PrintSeparator() 67 first_ = false; in PrintSeparator() 85 bool first_; member in v8::internal::AttributePrinter
|
H A D | regexp-compiler.cc | 334 return (first_ & (1 << value)) != 0; in Get() 345 first_ |= (1 << value); in Set() 357 uint32_t first_ = 0; member in v8::internal::DynamicBitSet
|
/third_party/vixl/src/aarch32/ |
H A D | instructions-aarch32.h | 651 SRegister first_; 655 explicit SRegisterList(SRegister reg) : first_(reg.GetCode()), length_(1) {} 657 : first_(first.GetCode()), length_(length) { 663 return SRegister((first_.GetCode() + n) % kNumberOfSRegisters); 665 const SRegister& GetFirstSRegister() const { return first_; } 673 DRegister first_; 677 explicit DRegisterList(DRegister reg) : first_(reg.GetCode()), length_(1) {} 679 : first_(first.GetCode()), length_(length) { 685 return DRegister((first_.GetCode() + n) % kMaxNumberOfDRegisters); 687 const DRegister& GetFirstDRegister() const { return first_; } [all...] |
/third_party/libabigail/src/ |
H A D | abg-comparison-priv.h | 994 translation_unit_sptr first_; member 998 : first_(f), second_(s) in priv() 1007 corpus_sptr first_; member 1066 first_(first), in priv()
|
H A D | abg-comparison.cc | 7454 {return priv_->first_;} in first_translation_unit() 8776 ABG_ASSERT(i < first_->get_functions().size()); in ensure_lookup_tables_populated() 8778 function_decl* deleted_fn = first_->get_functions()[i]; in ensure_lookup_tables_populated() 8845 if (first_->lookup_function_symbol(*i->second->get_symbol())) in ensure_lookup_tables_populated() 8856 if (first_->lookup_function_symbol(i->second->get_symbol()->get_name(), in ensure_lookup_tables_populated() 8876 ABG_ASSERT(i < first_->get_variables().size()); in ensure_lookup_tables_populated() 8878 var_decl* deleted_var = first_->get_variables()[i]; in ensure_lookup_tables_populated() 8948 if (first_->lookup_variable_symbol(*i->second->get_symbol())) in ensure_lookup_tables_populated() 8959 if (first_->lookup_variable_symbol(i->second->get_symbol()->get_name(), in ensure_lookup_tables_populated() 8980 ABG_ASSERT(i < first_ in ensure_lookup_tables_populated() [all...] |
/third_party/mesa3d/src/panfrost/lib/ |
H A D | pan_texture.c | 220 iter->field = iter->first_ ## field; \ in panfrost_surface_iter_next()
|
/third_party/node/deps/v8/src/objects/ |
H A D | string-inl.h | 1433 first_(first), 1470 return SubStringRange::iterator(string_, first_, no_gc_); 1474 return SubStringRange::iterator(string_, first_ + length_, no_gc_);
|
H A D | string.h | 684 int first_;
|
/third_party/node/deps/v8/src/ast/ |
H A D | ast.h | 1876 Expression* first() const { return first_; } in first() 1897 first_(first), in NaryOperation() 1920 Expression* first_; member in v8::internal::final
|