Lines Matching refs:ANeuralNetworksModel
79 std::optional<const ANeuralNetworksModel*> valueModel;
354 void setInputOperandValueFromModel(int32_t index, const ANeuralNetworksModel* valueModel) { in setInputOperandValueFromModel()
362 ANeuralNetworksModel* model = nullptr; in addOperation()
4465 ANeuralNetworksModel* makeIdentityModel(const ANeuralNetworksOperandType* type) { in makeIdentityModel()
4466 ANeuralNetworksModel* model = nullptr; in makeIdentityModel()
4482 void testIf(const std::vector<uint32_t>& outerDims, const ANeuralNetworksModel* thenModel, in testIf()
4483 const ANeuralNetworksModel* elseModel, bool testMutations) { in testIf()
4509 ANeuralNetworksModel* thenModel = makeIdentityModel(&thenDataType); in testIf()
4510 ANeuralNetworksModel* elseModel = makeIdentityModel(&elseDataType); in testIf()
4544 ANeuralNetworksModel* makeWhileCondModel(const ANeuralNetworksOperandType* dataType, in makeWhileCondModel()
4546 ANeuralNetworksModel* model = nullptr; in makeWhileCondModel()
4569 ANeuralNetworksModel* makeWhileBodyModel(const ANeuralNetworksOperandType* type) { in makeWhileBodyModel()
4570 ANeuralNetworksModel* model = nullptr; in makeWhileBodyModel()
4590 void testWhile(const std::vector<uint32_t>& outerDims, const ANeuralNetworksModel* condModel, in testWhile()
4591 const ANeuralNetworksModel* bodyModel, bool testMutations) { in testWhile()
4617 ANeuralNetworksModel* condModel = makeWhileCondModel(&condDataType, &boolType); in testWhile()
4618 ANeuralNetworksModel* bodyModel = makeWhileBodyModel(&bodyDataType); in testWhile()