Home
last modified time | relevance | path

Searched refs:minValue (Results 1 – 9 of 9) sorted by relevance

/cts/tests/app/src/android/app/cts/android/app/cts/tools/
DUidImportanceListener.java66 public int waitForValue(int minValue, int maxValue) { in waitForValue() argument
67 return waitForValue(minValue, maxValue, mDefaultWaitTime); in waitForValue()
70 public int waitForValue(int minValue, int maxValue, long timeout) { in waitForValue() argument
74 while (mLastValue < minValue || mLastValue > maxValue) { in waitForValue()
78 + minValue + "-" + maxValue + " (cut " in waitForValue()
86 Log.d("XXXX", "waitForValue " + minValue + "-" + maxValue + " (cut " in waitForValue()
/cts/apps/CtsVerifier/jni/megaaudio/player/
DWaveTableSource.cpp97 float maxValue, float minValue, float dutyCycle) { in genTriangleWave() argument
98 float range = maxValue - minValue; in genTriangleWave()
136 float maxValue, float minValue, float dutyCycle) { in genPulseWave() argument
143 buffer[index] = minValue; in genPulseWave()
DWaveTableSource.h89 static void genTriangleWave(float* buffer, int size, float maxValue, float minValue,
91 static void genPulseWave(float* buffer, int size,float maxValue, float minValue,
/cts/apps/CtsVerifier/src/org/hyphonate/megaaudio/player/sources/
DWaveTableSource.java168 float[] buffer, float maxValue, float minValue, float dutyCycle) { in genTriangleWave() argument
169 float range = maxValue - minValue; in genTriangleWave()
/cts/tests/tests/renderscript/src/android/renderscript/cts/
DRSBaseCompute.java176 int size, long seed, double minValue, double maxValue) { in createRandomFloatAllocation() argument
182 RSUtils.genRandomDoubles(seed, minValue, maxValue, inArray, false); in createRandomFloatAllocation()
186 RSUtils.genRandomFloats(seed, (float) minValue, (float) maxValue, inArray, false); in createRandomFloatAllocation()
190 RSUtils.genRandomFloat16s(seed, minValue, maxValue, inArray, false); in createRandomFloatAllocation()
277 double minValue = Float16Utils.convertFloat16ToDouble(minArray[i]); in enforceOrdering() local
279 if (minValue > maxValue) { in enforceOrdering()
DCoreMathVerifier.java413 static private Target.Floaty clamp(double value, double minValue, double maxValue, Target t) { in clamp() argument
414 return t.newFloaty(Math.min(maxValue, Math.max(minValue, value))); in clamp()
/cts/tests/tests/time/src/android/app/time/cts/
DTimeManagerTest.java680 int minValue, AtomicInteger actualValue) throws Exception { in waitForListenerCallbackCountAtLeast() argument
684 while (actualValue.get() < minValue in waitForListenerCallbackCountAtLeast()
688 assertTrue(actualValue.get() >= minValue); in waitForListenerCallbackCountAtLeast()
/cts/tests/camera/src/android/hardware/camera2/cts/
DCaptureRequestTest.java1441 float minValue = 0; in verifyFocusDistance() local
1463 resultDistances[i], minValue, maxValue); in verifyFocusDistance()
3560 float minValue = 0;
3563 float range = maxValue - minValue;
3567 testValues[i] = minValue;
3570 testValues[repeatMin+i] = minValue + stepSize * i;
/cts/tests/tests/car/lib/CarIntegrationTestUtilsLib/src/android/car/cts/utils/
DVehiclePropertyVerifier.java984 Integer minValue = (Integer) carPropertyConfig.getMinValue(areaId); in getPossibleIntegerValues() local
990 .that(minValue != null && maxValue != null).isTrue(); in getPossibleIntegerValues()
992 minValue.intValue(), maxValue.intValue()).boxed().collect(Collectors.toList()); in getPossibleIntegerValues()