Home | History | Annotate | Download | only in androidfw

Lines Matching defs:HISTORY_SIZE

356 const uint32_t LeastSquaresVelocityTrackerStrategy::HISTORY_SIZE;
379 if (++mIndex == HISTORY_SIZE) {
563 float x[HISTORY_SIZE];
564 float y[HISTORY_SIZE];
565 float w[HISTORY_SIZE];
566 float time[HISTORY_SIZE];
586 index = (index == 0 ? HISTORY_SIZE : index) - 1;
587 } while (++m < HISTORY_SIZE);
636 uint32_t nextIndex = (index + 1) % HISTORY_SIZE;
813 const uint32_t LegacyVelocityTrackerStrategy::HISTORY_SIZE;
835 if (++mIndex == HISTORY_SIZE) {
862 uint32_t nextOldestIndex = (oldestIndex == 0 ? HISTORY_SIZE : oldestIndex) - 1;
869 } while (++numTouches < HISTORY_SIZE);
891 if (++index == HISTORY_SIZE) {