Home
last modified time | relevance | path

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

/external/deqp-deps/SPIRV-Tools/source/opt/
Dssa_rewrite_pass.h63 users_() {} in PhiCandidate()
72 std::vector<uint32_t>& users() { return users_; } in users()
73 const std::vector<uint32_t>& users() const { return users_; } in users()
92 void AddUser(uint32_t operand_id) { users_.push_back(operand_id); } in AddUser()
121 std::vector<uint32_t> users_; variable
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dssa_rewrite_pass.h63 users_() {} in PhiCandidate()
72 std::vector<uint32_t>& users() { return users_; } in users()
73 const std::vector<uint32_t>& users() const { return users_; } in users()
92 void AddUser(uint32_t operand_id) { users_.push_back(operand_id); } in AddUser()
121 std::vector<uint32_t> users_; variable
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_instruction.h849 int64 user_count() const { return users_.size(); } in user_count()
852 const std::vector<HloInstruction*>& users() const { return users_; } in users()
1753 std::vector<HloInstruction*> users_; variable
Dhlo_instruction.cc1707 users_.push_back(user); in AddUser()
1884 auto vec_it = absl::c_find(users_, user); in RemoveUser()
1885 CHECK(vec_it != users_.end()); in RemoveUser()
1886 users_.erase(vec_it); in RemoveUser()
1975 users_.clear(); in ReplaceAllUsesWithDifferentShape()