Home
last modified time | relevance | path

Searched refs:inputPhi (Results 1 – 4 of 4) sorted by relevance

/frameworks/native/libs/input/tests/
DTfLiteMotionPredictor_test.cpp115 EXPECT_THAT(model->inputPhi().subspan(0, zeroPadding), Each(0)); in TEST()
121 EXPECT_THAT(model->inputPhi().subspan(zeroPadding), ElementsAre(0, -M_PI / 2, M_PI / 2)); in TEST()
135 ASSERT_EQ(inputLength, static_cast<size_t>(model->inputPhi().size())); in TEST()
/frameworks/native/include/input/
DTfLiteMotionPredictor.h134 std::span<float> inputPhi();
/frameworks/native/libs/input/
DTfLiteMotionPredictor.cpp196 std::copy(mInputPhi.begin(), mInputPhi.end(), model.inputPhi().begin()); in copyTo()
396 std::span<float> TfLiteMotionPredictorModel::inputPhi() { in inputPhi() function in android::TfLiteMotionPredictorModel
DMotionPredictor.cpp248 ALOGD("mInputPhi: %s", base::Join(mModel->inputPhi(), ", ").c_str()); in predict()