HomeSort by relevance Sort by last modified time
    Searched refs:operands_ (Results 1 - 10 of 10) sorted by null

  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
instruction.h 100 return static_cast<uint32_t>(operands_.size());
117 return static_cast<uint32_t>(operands_.size() - TypeResultIdCount());
151 std::vector<Operand> operands_; member in class:spvtools::ir::Instruction
159 assert(index < operands_.size() && "operand index out of bound");
160 return operands_[index];
165 assert(index < operands_.size() && "operand index out of bound");
166 operands_[index].words = std::move(data);
171 operands_.empty();
177 operands_.clear();
instruction.cpp 49 operands_.emplace_back(current_payload.type, std::move(words));
61 for (uint32_t i = TypeResultIdCount(); i < operands_.size(); ++i)
62 size += static_cast<uint32_t>(operands_[i].words.size());
75 for (const auto& operand : operands_)
  /system/core/libunwindstack/
DwarfCfa.cpp 53 operands_.clear();
108 operands_.push_back(block_length);
117 operands_.push_back(value);
307 AddressType new_pc = operands_[0];
321 cur_pc_ += operands_[0] * fde_->cie->code_alignment_factor;
327 AddressType reg = operands_[0];
328 (*loc_regs)[reg] = {.type = DWARF_LOCATION_OFFSET, .values = {operands_[1]}};
334 AddressType reg = operands_[0];
351 AddressType reg = operands_[0];
358 AddressType reg = operands_[0]
    [all...]
DwarfOp.cpp 85 operands_.clear();
92 operands_.push_back(value);
173 for (auto operand : operands_) {
DwarfOp.h 84 AddressType OperandAt(size_t index) { return operands_[index]; }
85 size_t OperandsSize() { return operands_.size(); }
101 std::vector<AddressType> operands_; member in class:unwindstack::DwarfOp
    [all...]
DwarfCfa.h 98 std::vector<AddressType> operands_; member in class:unwindstack::DwarfCfa
  /external/v8/src/interpreter/
bytecode-pipeline.h 240 return operands_[i];
242 const uint32_t* operands() const { return operands_; }
270 operands_[0] = operand0;
271 operands_[1] = operand1;
272 operands_[2] = operand2;
273 operands_[3] = operand3;
362 operands_[operand_index] = operand;
367 uint32_t operands_[Bytecodes::kMaxOperands]; member in class:v8::internal::interpreter::final
bytecode-pipeline.cc 21 os << ' ' << std::setw(8) << std::setfill('0') << std::hex << operands_[i]; local
  /external/v8/src/compiler/
instruction.cc 336 operands_[offset++] = outputs[i];
340 operands_[offset++] = inputs[i];
344 operands_[offset++] = temps[i];
606 operands_(input_count, InstructionOperand::kInvalidVirtualRegister,
611 DCHECK_EQ(InstructionOperand::kInvalidVirtualRegister, operands_[offset]);
612 operands_[offset] = virtual_register;
616 DCHECK_NE(InstructionOperand::kInvalidVirtualRegister, operands_[offset]);
617 operands_[offset] = virtual_register;
    [all...]
instruction.h 809 return &operands_[i];
813 return &operands_[i];
823 return &operands_[OutputCount() + i];
827 return &operands_[OutputCount() + i];
833 return &operands_[OutputCount() + InputCount() + i];
837 return &operands_[OutputCount() + InputCount() + i];
    [all...]

Completed in 115 milliseconds