Searched refs:orders_ (Results 1 – 3 of 3) sorted by relevance
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | copy_insertion.cc | 565 orders_.push_back(order); in Relation() 568 : intercept_def_use_(that.intercept_def_use_), orders_(that.orders_) {} in Relation() 571 absl::c_equal(orders_, that.orders_); in operator ==() 577 CHECK_EQ(orders_.size(), 1); in UseImpliesInterception() 578 return UseImpliesInterception(orders_[0]); in UseImpliesInterception() 583 CHECK_EQ(orders_.size(), 1); in DefinitionImpliesInterception() 584 return DefinitionImpliesInterception(orders_[0]); in DefinitionImpliesInterception() 591 CHECK_EQ(orders_.size(), 1); in UpdateInterception() 595 if (orders_.empty()) { in GetRuntimeOrder() 598 CHECK_EQ(orders_.size(), 1); in GetRuntimeOrder() [all …]
|
/external/perfetto/src/trace_processor/sqlite/ |
D | db_sqlite_table.cc | 460 orders_.resize(qc.order_by().size()); in Filter() 464 orders_[i] = Order{col, static_cast<bool>(ob.desc)}; in Filter() 489 constraints_, orders_, cols_used_bv, computed_table); in Filter() 565 for (const auto& o : orders_) { in Filter() 578 RowMap::OptimizeFor optimize_for = orders_.empty() in Filter() 603 if (!orders_.empty()) in Filter() 604 db_table_ = db_table_->Sort(orders_); in Filter()
|
D | db_sqlite_table.h | 122 std::vector<Order> orders_; variable
|