Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/delegates/gpu/gl/compiler/
Drename.cc54 name_to_variable_.find(std::string(ref.name.data(), ref.name.size())); in Rewrite()
55 if (it == name_to_variable_.end()) { in Rewrite()
72 return name_to_variable_.insert({old_name, std::move(variable)}).second; in AddVariable()
78 variables.reserve(name_to_variable_.size()); in GetUniformParameters()
79 for (const auto& variable : name_to_variable_) { in GetUniformParameters()
89 absl::flat_hash_map<std::string, Variable> name_to_variable_; member in tflite::gpu::gl::__anon2ec6fcc20111::VariableRewriter
Dvariable_accessor.cc422 name_to_variable_.find(std::string(ref.name.data(), ref.name.size())); in Rewrite()
423 if (it == name_to_variable_.end()) { in Rewrite()
461 if (!name_to_variable_.insert({name, std::move(variable)}).second) { in AddSharedVariable()
470 if (!name_to_variable_.insert({name, std::move(variable)}).second) { in AddUniformParameter()
486 for (const auto& variable : name_to_variable_) { in GetConstDeclarations()
507 const auto& variable = name_to_variable_.at(name); in GetSharedVariableDeclarations()
519 const auto& variable = name_to_variable_.at(name); in GetUniformParameterDeclarations()
525 const auto& variable = name_to_variable_.at(name); in GetUniformParameterDeclarations()
536 variables.reserve(name_to_variable_.size()); in GetUniformParameters()
539 const auto& variable = name_to_variable_.at(name); in GetUniformParameters()
Dvariable_accessor.h78 absl::flat_hash_map<std::string, Variable> name_to_variable_; variable