Home
last modified time | relevance | path

Searched refs:highValue (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/util/
H A DIntHistogram.java178 double highValue = Math.min(hitBucket.end, maximum); in quantileFunction() local
180 if (value >= highValue - 1.0 || hitBucket.count == 0) return Math.min(value, highValue); in quantileFunction()
182 value += (highValue - value) * (target - partialSum) / hitBucket.count; in quantileFunction()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/sensors/
H A DThresholdSensorImplTest.java315 float highValue = 100f; in testHysteresis() local
322 .setThresholdLatchValue(highValue) in testHysteresis()
343 sensor.sendSensorEvent(highValue); in testHysteresis()
348 sensor.sendSensorEvent(highValue - 1); in testHysteresis()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapObexServer.java708 int highValue = appParam[i] & 0xff; in parseApplicationParameter() local
710 appParamValue.maxListCount = highValue * 256 + lowValue; in parseApplicationParameter()
716 int highValue = appParam[i] & 0xff; in parseApplicationParameter() local
718 appParamValue.listStartOffset = highValue * 256 + lowValue; in parseApplicationParameter()