HomeSort by relevance Sort by last modified time
    Searched defs:thresholdPercent (Results 1 - 2 of 2) sorted by null

  /cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
JitterVerification.java 81 int thresholdPercent = DEFAULTS.get(sensorType, -1);
82 if (thresholdPercent == -1) {
88 thresholdPercent = THRESHOLD_PERCENT_FOR_HIFI_SENSORS;
92 long jitterThresholdNs = expectedPeriodNs * thresholdPercent * 2 / 100; // *2 is for +/-
  /frameworks/wilhelm/src/android/
android_GenericPlayer.cpp 188 void GenericPlayer::setBufferingUpdateThreshold(int16_t thresholdPercent) {
189 SL_LOGV("GenericPlayer::setBufferingUpdateThreshold %d", thresholdPercent);
191 msg->setInt32(WHATPARAM_BUFFERING_UPDATETHRESHOLD_PERCENT, (int32_t)thresholdPercent);
506 int32_t thresholdPercent = 0;
507 if (msg->findInt32(WHATPARAM_BUFFERING_UPDATETHRESHOLD_PERCENT, &thresholdPercent)) {
509 mCacheFillNotifThreshold = (int16_t)thresholdPercent;

Completed in 628 milliseconds