Home
last modified time | relevance | path

Searched refs:minValue (Results 1 – 4 of 4) 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/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/camera/src/android/hardware/camera2/cts/
DCaptureRequestTest.java1226 float minValue = 0; in verifyFocusDistance() local
1248 resultDistances[i], minValue, maxValue); in verifyFocusDistance()
2836 float minValue = 0;
2839 float range = maxValue - minValue;
2843 testValues[i] = minValue;
2846 testValues[repeatMin+i] = minValue + stepSize * i;