HomeSort by relevance Sort by last modified time
    Searched full:types_values_ (Results 1 - 2 of 2) sorted by null

  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
module.cpp 35 for (uint32_t i = 0; i < types_values_.size(); ++i) {
36 if (IsTypeInst(types_values_[i].opcode()))
37 insts.push_back(&types_values_[i]);
51 for (auto& i : types_values_) f(&i);
72 for (const auto& t : types_values_) t.ToBinary(binary, skip_nop);
module.h 81 void AddType(Instruction&& t) { types_values_.push_back(std::move(t)); }
83 void AddConstant(Instruction&& c) { types_values_.push_back(std::move(c)); }
86 types_values_.push_back(std::move(v));
122 std::vector<Instruction> types_values_; member in class:spvtools::ir::Module

Completed in 69 milliseconds