Lines Matching refs:operand
84 const int32_t* getPointer(uint32_t operand);
85 Shape getShape(uint32_t operand);
86 bool setShape(uint32_t operand, const Shape& shape);
87 bool isConstant(uint32_t operand);
90 const hexagon_nn_input& getTensor(uint32_t operand);
91 const hexagon_nn_input& getQuantizationMin(uint32_t operand);
92 const hexagon_nn_input& getQuantizationMax(uint32_t operand);
93 hexagon_nn_input createQuantizationValue(uint32_t operand, int32_t quant_value);
94 hexagon_nn_input createConvFilterTensor(uint32_t operand);
95 hexagon_nn_input createDepthwiseFilterTensor(uint32_t operand, int32_t depth_multiplier);
96 hexagon_nn_input createFullyConnectedWeightTensor(uint32_t operand);
98 Type getScalar(uint32_t operand);
99 op_type getFloatActivation(uint32_t operand);
100 op_type getQuantizedActivation(uint32_t operand);
101 hexagon_nn_padding_type getPadding(uint32_t operand);
145 hexagon_nn_input addOperand(uint32_t operand);
171 Type Model::getScalar(uint32_t operand) { in getScalar() argument
172 return *reinterpret_cast<const Type*>(mOperands[operand].buffer); in getScalar()