Lines Matching refs:operands_
66 operands_.emplace_back(current_payload.type, std::move(words)); in Instruction()
78 operands_() { in Instruction()
80 operands_.emplace_back(spv_operand_type_t::SPV_OPERAND_TYPE_TYPE_ID, in Instruction()
84 operands_.emplace_back(spv_operand_type_t::SPV_OPERAND_TYPE_RESULT_ID, in Instruction()
87 operands_.insert(operands_.end(), in_operands.begin(), in_operands.end()); in Instruction()
96 operands_(std::move(that.operands_)), in Instruction()
104 operands_ = std::move(that.operands_); in operator =()
115 clone->operands_ = operands_; in Clone()
128 for (uint32_t i = TypeResultIdCount(); i < operands_.size(); ++i) in NumInOperandWords()
129 size += static_cast<uint32_t>(operands_[i].words.size()); in NumInOperandWords()
137 for (const auto& operand : operands_) in ToBinaryWithoutAttachedDebugInsts()
142 operands_.clear(); in ReplaceOperands()
143 operands_.insert(operands_.begin(), new_operands.begin(), new_operands.end()); in ReplaceOperands()