Home
last modified time | relevance | path

Searched refs:operands_ (Results 1 - 25 of 25) sorted by relevance

/third_party/spirv-tools/source/opt/
H A Dinstruction.h274 iterator begin() { return operands_.begin(); } in begin()
275 iterator end() { return operands_.end(); } in end()
276 const_iterator begin() const { return operands_.cbegin(); } in begin()
277 const_iterator end() const { return operands_.cend(); } in end()
279 const_iterator cbegin() const { return operands_.cbegin(); } in cbegin()
280 const_iterator cend() const { return operands_.cend(); } in cend()
284 return static_cast<uint32_t>(operands_.size()); in NumOperands()
344 operands_.erase(operands_.begin() + index); in RemoveOperand()
348 operands_ in InsertOperand()
639 OperandList operands_; global() member in spvtools::opt::Instruction
[all...]
H A Dinstruction.cpp76 operands_.reserve(inst.num_operands); in Instruction()
79 operands_.emplace_back( in Instruction()
96 operands_.reserve(inst.num_operands); in Instruction()
99 operands_.emplace_back( in Instruction()
113 operands_(), in Instruction()
122 operands_.reserve(operands_size); in Instruction()
124 operands_.emplace_back(spv_operand_type_t::SPV_OPERAND_TYPE_TYPE_ID, in Instruction()
128 operands_.emplace_back(spv_operand_type_t::SPV_OPERAND_TYPE_RESULT_ID, in Instruction()
131 operands_.insert(operands_ in Instruction()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dinstruction.h261 iterator begin() { return operands_.begin(); } in begin()
262 iterator end() { return operands_.end(); } in end()
263 const_iterator begin() const { return operands_.cbegin(); } in begin()
264 const_iterator end() const { return operands_.cend(); } in end()
266 const_iterator cbegin() const { return operands_.cbegin(); } in cbegin()
267 const_iterator cend() const { return operands_.cend(); } in cend()
271 return static_cast<uint32_t>(operands_.size()); in NumOperands()
328 operands_.erase(operands_.begin() + index); in RemoveOperand()
332 operands_ in InsertOperand()
623 OperandList operands_; global() member in spvtools::opt::Instruction
[all...]
H A Dinstruction.cpp82 operands_.emplace_back(current_payload.type, std::move(words)); in Instruction()
102 operands_.emplace_back(current_payload.type, std::move(words)); in Instruction()
114 operands_(), in Instruction()
117 operands_.emplace_back(spv_operand_type_t::SPV_OPERAND_TYPE_TYPE_ID, in Instruction()
121 operands_.emplace_back(spv_operand_type_t::SPV_OPERAND_TYPE_RESULT_ID, in Instruction()
124 operands_.insert(operands_.end(), in_operands.begin(), in_operands.end()); in Instruction()
134 operands_(std::move(that.operands_)), in Instruction()
148 operands_ in operator =()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dinstruction.h261 iterator begin() { return operands_.begin(); } in begin()
262 iterator end() { return operands_.end(); } in end()
263 const_iterator begin() const { return operands_.cbegin(); } in begin()
264 const_iterator end() const { return operands_.cend(); } in end()
266 const_iterator cbegin() const { return operands_.cbegin(); } in cbegin()
267 const_iterator cend() const { return operands_.cend(); } in cend()
271 return static_cast<uint32_t>(operands_.size()); in NumOperands()
328 operands_.erase(operands_.begin() + index); in RemoveOperand()
332 operands_ in InsertOperand()
623 OperandList operands_; global() member in spvtools::opt::Instruction
[all...]
H A Dinstruction.cpp82 operands_.emplace_back(current_payload.type, std::move(words)); in Instruction()
102 operands_.emplace_back(current_payload.type, std::move(words)); in Instruction()
114 operands_(), in Instruction()
117 operands_.emplace_back(spv_operand_type_t::SPV_OPERAND_TYPE_TYPE_ID, in Instruction()
121 operands_.emplace_back(spv_operand_type_t::SPV_OPERAND_TYPE_RESULT_ID, in Instruction()
124 operands_.insert(operands_.end(), in_operands.begin(), in_operands.end()); in Instruction()
134 operands_(std::move(that.operands_)), in Instruction()
148 operands_ in operator =()
[all...]
/third_party/node/deps/v8/src/wasm/
H A Dwasm-init-expr.h58 WasmInitExpr() : kind_(kNone), operands_(nullptr) { in WasmInitExpr()
61 explicit WasmInitExpr(int32_t v) : kind_(kI32Const), operands_(nullptr) { in WasmInitExpr()
64 explicit WasmInitExpr(int64_t v) : kind_(kI64Const), operands_(nullptr) { in WasmInitExpr()
67 explicit WasmInitExpr(float v) : kind_(kF32Const), operands_(nullptr) { in WasmInitExpr()
70 explicit WasmInitExpr(double v) : kind_(kF64Const), operands_(nullptr) { in WasmInitExpr()
74 : kind_(kS128Const), operands_(nullptr) { in WasmInitExpr()
152 const ZoneVector<WasmInitExpr>* operands() const { return operands_; } in operands()
205 : kind_(kind), operands_(operands) {} in WasmInitExpr()
208 const ZoneVector<WasmInitExpr>* operands_; member in v8::internal::wasm::WasmInitExpr
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dinstruction.h73 return operands_[idx]; in operand()
78 return operands_; in operands()
103 const spv_parsed_operand_t& o = operands_.at(index); in GetOperandAs()
114 const std::vector<spv_parsed_operand_t> operands_; member in spvtools::val::Instruction
H A Dinstruction.cpp24 operands_(inst->operands, inst->operands + inst->num_operands), in Instruction()
26 inst->type_id, inst->result_id, operands_.data(), in Instruction()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dinstruction.h73 return operands_[idx]; in operand()
78 return operands_; in operands()
103 const spv_parsed_operand_t& o = operands_.at(index); in GetOperandAs()
114 const std::vector<spv_parsed_operand_t> operands_; member in spvtools::val::Instruction
H A Dinstruction.cpp24 operands_(inst->operands, inst->operands + inst->num_operands), in Instruction()
26 inst->type_id, inst->result_id, operands_.data(), in Instruction()
/third_party/spirv-tools/source/val/
H A Dinstruction.h73 return operands_[idx]; in operand()
78 return operands_; in operands()
103 const spv_parsed_operand_t& o = operands_.at(index); in GetOperandAs()
114 const std::vector<spv_parsed_operand_t> operands_; member in spvtools::val::Instruction
H A Dinstruction.cpp27 operands_(inst->operands, inst->operands + inst->num_operands), in Instruction()
29 inst->type_id, inst->result_id, operands_.data(), in Instruction()
49 const spv_parsed_operand_t& o = operands_.at(index); in GetOperandAs()
/third_party/node/deps/v8/src/interpreter/
H A Dbytecode-node.h112 return operands_[i]; in operand()
114 const uint32_t* operands() const { return operands_; } in operands()
144 operands_[0] = operand0; in BytecodeNode()
145 operands_[1] = operand1; in BytecodeNode()
146 operands_[2] = operand2; in BytecodeNode()
147 operands_[3] = operand3; in BytecodeNode()
148 operands_[4] = operand4; in BytecodeNode()
260 operands_[operand_index] = operand; in SetOperand()
265 uint32_t operands_[Bytecodes::kMaxOperands]; member in v8::internal::interpreter::final
H A Dbytecode-node.cc21 os << ' ' << std::setw(8) << std::setfill('0') << std::hex << operands_[i]; in Print() local
/third_party/skia/third_party/externals/spirv-tools/tools/sva/src/
H A Dast.js82 this.operands_ = operands;
89 operands() { return this.operands_; }
91 operand(val) { return this.operands_[val]; }
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/
H A Dast.js82 this.operands_ = operands;
89 operands() { return this.operands_; }
91 operand(val) { return this.operands_[val]; }
/third_party/spirv-tools/tools/sva/src/
H A Dast.js82 this.operands_ = operands;
89 operands() { return this.operands_; }
91 operand(val) { return this.operands_[val]; }
/third_party/skia/third_party/externals/tint/src/writer/spirv/
H A Dinstruction.cc24 : op_(op), operands_(std::move(operands)) {} in Instruction()
32 for (const auto& op : operands_) { in word_length()
H A Dinstruction.h42 const OperandList& operands() const { return operands_; } in operands()
49 OperandList operands_; member in tint::writer::spirv::Instruction
/third_party/skia/third_party/externals/spirv-tools/test/
H A Dunit_spirv.h152 : enum_value_(val), name_(enum_name), operands_(ops) {}
158 const std::vector<uint32_t>& operands() const { return operands_; } in operands()
163 std::vector<uint32_t> operands_; member in spvtest::EnumCase
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
H A Dunit_spirv.h152 : enum_value_(val), name_(enum_name), operands_(ops) {}
158 const std::vector<uint32_t>& operands() const { return operands_; } in operands()
163 std::vector<uint32_t> operands_; member in spvtest::EnumCase
/third_party/spirv-tools/test/
H A Dunit_spirv.h152 : enum_value_(val), name_(enum_name), operands_(ops) {}
158 const std::vector<uint32_t>& operands() const { return operands_; } in operands()
163 std::vector<uint32_t> operands_; member in spvtest::EnumCase
/third_party/node/deps/v8/src/compiler/backend/
H A Dinstruction.cc335 STATIC_ASSERT(offsetof(Instruction, operands_) % 8 == 0);
354 operands_[offset++] = outputs[i];
358 operands_[offset++] = inputs[i];
362 operands_[offset++] = temps[i];
602 operands_(input_count, InstructionOperand::kInvalidVirtualRegister,
606 DCHECK_EQ(InstructionOperand::kInvalidVirtualRegister, operands_[offset]);
607 operands_[offset] = virtual_register;
611 DCHECK_NE(InstructionOperand::kInvalidVirtualRegister, operands_[offset]);
612 operands_[offset] = virtual_register;
H A Dinstruction.h853 return &operands_[i]; in OutputAt()
857 return &operands_[i]; in OutputAt()
867 return &operands_[OutputCount() + i]; in InputAt()
871 return &operands_[OutputCount() + i]; in InputAt()
877 return &operands_[OutputCount() + InputCount() + i]; in TempAt()
881 return &operands_[OutputCount() + InputCount() + i]; in TempAt()
1053 InstructionOperand operands_[1]; member in v8::internal::compiler::final
1511 const IntVector& operands() const { return operands_; } in operands()
1521 IntVector operands_; member in v8::internal::compiler::final

Completed in 16 milliseconds