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

  /external/v8/src/interpreter/
bytecode-pipeline.cc 21 os << ' ' << std::setw(8) << std::setfill('0') << std::hex << operands_[i]; local
bytecode-pipeline.h 264 return operands_[i];
266 const uint32_t* operands() const { return operands_; }
292 operands_[operand_index] = operand;
297 uint32_t operands_[Bytecodes::kMaxOperands]; member in class:v8::internal::interpreter::final
  /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();

Completed in 321 milliseconds