Lines Matching refs:operands
169 RunTimeOperandInfo* operands);
171 int executeSubgraph(const Model::Subgraph& subgraph, RunTimeOperandInfo* operands);
173 int executeOperation(const Operation& operation, RunTimeOperandInfo* operands);
174 int executeIfOperation(const Operation& operation, RunTimeOperandInfo* operands);
175 int executeWhileOperation(const Operation& operation, RunTimeOperandInfo* operands);
178 const std::vector<RunTimeOperandInfo>& operands);
265 inline int NumInputsWithValues(const Operation& operation, const RunTimeOperandInfo* operands) { in NumInputsWithValues() argument
268 [&operands](uint32_t i) { return !IsNullInput(&operands[i]); }); in NumInputsWithValues()
283 inline RunTimeOperandInfo* GetInput(const Operation& operation, RunTimeOperandInfo* operands, in GetInput() argument
285 return &operands[operation.inputs[index]]; in GetInput()
288 inline RunTimeOperandInfo* GetOutput(const Operation& operation, RunTimeOperandInfo* operands, in GetOutput() argument
290 return &operands[operation.outputs[index]]; in GetOutput()