Lines Matching refs:ANeuralNetworksModel
78 std::optional<const ANeuralNetworksModel*> valueModel;
354 void setInputOperandValueFromModel(int32_t index, const ANeuralNetworksModel* valueModel) { in setInputOperandValueFromModel()
362 ANeuralNetworksModel* model = nullptr; in addOperation()
4533 ANeuralNetworksModel* makeIdentityModel(const ANeuralNetworksOperandType* type) { in makeIdentityModel()
4534 ANeuralNetworksModel* model = nullptr; in makeIdentityModel()
4550 void testIf(const std::vector<uint32_t>& outerDims, const ANeuralNetworksModel* thenModel, in testIf()
4551 const ANeuralNetworksModel* elseModel, bool testMutations) { in testIf()
4577 ANeuralNetworksModel* thenModel = makeIdentityModel(&thenDataType); in testIf()
4578 ANeuralNetworksModel* elseModel = makeIdentityModel(&elseDataType); in testIf()
4612 ANeuralNetworksModel* makeWhileCondModel(const ANeuralNetworksOperandType* dataType, in makeWhileCondModel()
4614 ANeuralNetworksModel* model = nullptr; in makeWhileCondModel()
4637 ANeuralNetworksModel* makeWhileBodyModel(const ANeuralNetworksOperandType* type) { in makeWhileBodyModel()
4638 ANeuralNetworksModel* model = nullptr; in makeWhileBodyModel()
4658 void testWhile(const std::vector<uint32_t>& outerDims, const ANeuralNetworksModel* condModel, in testWhile()
4659 const ANeuralNetworksModel* bodyModel, bool testMutations) { in testWhile()
4685 ANeuralNetworksModel* condModel = makeWhileCondModel(&condDataType, &boolType); in testWhile()
4686 ANeuralNetworksModel* bodyModel = makeWhileBodyModel(&bodyDataType); in testWhile()