Home
last modified time | relevance | path

Searched refs:r (Results 1 – 25 of 178) sorted by relevance

12345678

/cts/tests/tests/renderscript/src/android/renderscript/cts/
Dkernel_all.rs9 uchar2 r;
10 r.x = ain.x + 1;
11 r.y = ain.y + 1;
12 return r;
16 uchar3 r;
17 r.x = ain.x + 1;
18 r.y = ain.y + 1;
19 r.z = ain.z + 1;
20 return r;
24 uchar4 r;
[all …]
Dintrinsic_blur.rs31 float4 r = rsUnpackColor8888(v);
32 return r.r;
40 uchar4 r = rsPackColorTo8888(v);
41 return r.r;
60 for (int r = -radius; r <= radius; r ++) {
61 floatR = (float)r;
62 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
63 normalizeFactor += gaussian[r + radius];
67 for (int r = -radius; r <= radius; r ++) {
68 floatR = (float)r;
[all …]
DRSUtils.java72 Random r = new Random(seed); in genRandomDoubles() local
79 double mantissa = r.nextDouble(); in genRandomDoubles()
80 int exponent = minExponent + r.nextInt(maxExponent - minExponent); in genRandomDoubles()
81 int sign = (min >= 0) ? 1 : 1 - r.nextInt(2) * 2; // -1 or 1 in genRandomDoubles()
91 double rand = r.nextDouble(); in genRandomDoubles()
99 array[r.nextInt(array.length)] = d; in genRandomDoubles()
102 array[r.nextInt(array.length)] = min; in genRandomDoubles()
103 array[r.nextInt(array.length)] = max; in genRandomDoubles()
105 array[r.nextInt(array.length)] = Double.NaN; in genRandomDoubles()
106 array[r.nextInt(array.length)] = Double.POSITIVE_INFINITY; in genRandomDoubles()
[all …]
DAtomicTest.java273 Random r = new Random(78); in testAnd() local
281 mSrcData[r.nextInt(mSrcData.length)] = ~0x40000000; in testAnd()
282 mSrcData[r.nextInt(mSrcData.length)] = ~0x10000000; in testAnd()
283 mSrcData[r.nextInt(mSrcData.length)] = ~0x02000000; in testAnd()
284 mSrcData[r.nextInt(mSrcData.length)] = ~0x00c00000; in testAnd()
285 mSrcData[r.nextInt(mSrcData.length)] = ~0x00010000; in testAnd()
286 mSrcData[r.nextInt(mSrcData.length)] = ~0x00080000; in testAnd()
287 mSrcData[r.nextInt(mSrcData.length)] = ~0x00001000; in testAnd()
288 mSrcData[r.nextInt(mSrcData.length)] = ~0x00000200; in testAnd()
289 mSrcData[r.nextInt(mSrcData.length)] = ~0x0000000f; in testAnd()
[all …]
DAllocationByteBufferTest.java49 Random r = new Random(RAND_SEED); in testByteBufferHelper() local
62 int posX = r.nextInt(dimX); in testByteBufferHelper()
63 int posY = r.nextInt(dimY); in testByteBufferHelper()
73 Random r = new Random(RAND_SEED); in testByteBufferHelper1D() local
74 int dimX = r.nextInt(MAX_DIM) + 1; in testByteBufferHelper1D()
79 Random r = new Random(RAND_SEED); in testByteBufferHelper2D() local
80 int dimX = r.nextInt(MAX_DIM) + 1; in testByteBufferHelper2D()
81 int dimY = r.nextInt(MAX_DIM) + 2; //Make sure dimY is larger than 1; in testByteBufferHelper2D()
86 Random r = new Random(RAND_SEED); in test1DWrite() local
88 int dimX = r.nextInt(MAX_DIM) + 1; in test1DWrite()
[all …]
DImageProcessingTest.java311 int pack(float a, float r, float g, float b) { in pack() argument
313 int ir = clamp((int) (255 * r)); in pack()
323 int pack(int a, int r, int g, int b) { in pack() argument
325 rgba[0] = (byte) clamp(r); in pack()
403 float r = (dstR * srcA + (1 - dstA) * srcR);
408 return pack(a, r, g, b);
419 float r = (dstR * srcA);
423 return pack(a, r, g, b);
436 int r = Math.min(s_dstR + s_srcR, 255);
440 return pack(a, r, g, b);
[all …]
/cts/tests/accessibility/src/android/view/accessibility/cts/
DAccessibilityNodeInfo_RangeInfoTest.java34 RangeInfo r; in testObtain() local
36 r = RangeInfo.obtain(RangeInfo.RANGE_TYPE_INT, -100, 0, -50); in testObtain()
37 assertEquals(RangeInfo.RANGE_TYPE_INT, r.getType()); in testObtain()
38 assertEquals(-100, r.getMin(), FLOAT_TOLERANCE); in testObtain()
39 assertEquals(0, r.getMax(), FLOAT_TOLERANCE); in testObtain()
40 assertEquals(-50, r.getCurrent(), FLOAT_TOLERANCE); in testObtain()
42 r = RangeInfo.obtain(RangeInfo.RANGE_TYPE_FLOAT, -1.5f, 1.5f, 0.0f); in testObtain()
43 assertEquals(RangeInfo.RANGE_TYPE_FLOAT, r.getType()); in testObtain()
44 assertEquals(-1.5f, r.getMin(), FLOAT_TOLERANCE); in testObtain()
45 assertEquals(1.5f, r.getMax(), FLOAT_TOLERANCE); in testObtain()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
DDspBufferMath.java54 static public <T extends DspBufferBase> int add(T r, T a, T b) { in add() argument
56 r.setSize(size); in add()
73 if (r instanceof DspBufferComplex) { in add()
77 ((DspBufferComplex) r).mReal[i] = in add()
79 ((DspBufferComplex) r).mImag[i] = 0; in add()
84 ((DspBufferComplex) r).mReal[i] = in add()
86 ((DspBufferComplex) r).mImag[i] = in add()
92 ((DspBufferComplex) r).mReal[i] = in add()
94 ((DspBufferComplex) r).mImag[i] = ((DspBufferComplex) x).mImag[i]; in add()
98 } else if (r instanceof DspBufferDouble) { in add()
[all …]
DDspFftServer.java52 public void fft(DspBufferComplex r, int sign) { in fft() argument
68 t1 = r.mReal[ii]; in fft()
69 r.mReal[ii] = r.mReal[jj]; in fft()
70 r.mReal[jj] = t1; in fft()
71 t1 = r.mImag[ii]; in fft()
72 r.mImag[ii] = r.mImag[jj]; in fft()
73 r.mImag[jj] = t1; in fft()
90 t1 = cc * r.mReal[kk + n1] - ss * r.mImag[kk + n1]; in fft()
91 t2 = ss * r.mReal[kk + n1] + cc * r.mImag[kk + n1]; in fft()
92 r.mReal[kk + n1] = r.mReal[kk] - t1; in fft()
[all …]
DDspWindow.java62 public static boolean fillWindow(DspBufferDouble r, int type, int overlap) { in fillWindow() argument
64 int size = r.getSize(); in fillWindow()
71 status = fillRectangular(r); in fillWindow()
74 status = fillTriangular(r, size / 2); in fillWindow()
77 status = fillTriangular(r, overlap); in fillWindow()
80 status = fillHamming(r, size / 2); in fillWindow()
83 status = fillHamming(r, overlap); in fillWindow()
86 status = fillHanning(r, size / 2); in fillWindow()
89 status = fillHanning(r, overlap); in fillWindow()
95 private static boolean fillRectangular(DspBufferDouble r) { in fillRectangular() argument
[all …]
/cts/tests/tests/renderscriptlegacy/src/android/renderscriptlegacy/cts/
DRSUtils.java50 Random r = new Random(seed); in genRandomDoubles() local
57 double mantissa = r.nextDouble(); in genRandomDoubles()
58 int exponent = minExponent + r.nextInt(maxExponent - minExponent); in genRandomDoubles()
59 int sign = (min >= 0) ? 1 : 1 - r.nextInt(2) * 2; // -1 or 1 in genRandomDoubles()
69 double rand = r.nextDouble(); in genRandomDoubles()
77 array[r.nextInt(array.length)] = d; in genRandomDoubles()
80 array[r.nextInt(array.length)] = min; in genRandomDoubles()
81 array[r.nextInt(array.length)] = max; in genRandomDoubles()
83 array[r.nextInt(array.length)] = Double.NaN; in genRandomDoubles()
84 array[r.nextInt(array.length)] = Double.POSITIVE_INFINITY; in genRandomDoubles()
[all …]
/cts/tests/tests/opengl/src/android/opengl/cts/
DColorBufferTest.java45 float r = 1.0f; in test_RGBA_1001() local
49 final float[] vertexColors = getVertexColors(r, g, b, a); in test_RGBA_1001()
51 float[] expectedColor = {r, g, b, a}; in test_RGBA_1001()
63 float r = 1.0f; in test_RGBA_1101() local
67 final float[] vertexColors = getVertexColors(r, g, b, a); in test_RGBA_1101()
68 float[] expectedColor = {r, g, b, a}; in test_RGBA_1101()
81 float r = 1.0f; in test_RGBA_1111() local
85 final float[] vertexColors = getVertexColors(r, g, b, a); in test_RGBA_1111()
87 float[] expectedColor = {r, g, b, a}; in test_RGBA_1111()
100 float r = 0.0f; in test_RGBA_0101() local
[all …]
DNativeColorBufferTest.java40 float r = 1.0f; in test_RGBA_1001() local
44 final float[] vertexColors = getVertexColors(r, g, b, a); in test_RGBA_1001()
46 float[] expectedColor = {r, g, b, a}; in test_RGBA_1001()
58 float r = 1.0f; in test_RGBA_1101() local
62 final float[] vertexColors = getVertexColors(r, g, b, a); in test_RGBA_1101()
63 float[] expectedColor = {r, g, b, a}; in test_RGBA_1101()
76 float r = 1.0f; in test_RGBA_1111() local
80 final float[] vertexColors = getVertexColors(r, g, b, a); in test_RGBA_1111()
82 float[] expectedColor = {r, g, b, a}; in test_RGBA_1111()
95 float r = 0.0f; in test_RGBA_0101() local
[all …]
/cts/hostsidetests/appsecurity/test-apps/SplitApp/src/com/android/cts/splitapp/
DSplitAppTest.java80 final Resources r = getContext().getResources(); in testSingleBase() local
84 assertEquals(false, r.getBoolean(R.bool.my_receiver_enabled)); in testSingleBase()
86 assertEquals("blue", r.getString(R.string.my_string1)); in testSingleBase()
87 assertEquals("purple", r.getString(R.string.my_string2)); in testSingleBase()
89 assertEquals(0xff00ff00, r.getColor(R.color.my_color)); in testSingleBase()
90 assertEquals(123, r.getInteger(R.integer.my_integer)); in testSingleBase()
92 assertEquals("base", getXmlTestValue(r.getXml(R.xml.my_activity_meta))); in testSingleBase()
96 r.getDrawable(R.drawable.image); in testSingleBase()
102 assertAssetContents(r, "file1.txt", "FILE1"); in testSingleBase()
103 assertAssetContents(r, "dir/dirfile1.txt", "DIRFILE1"); in testSingleBase()
[all …]
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DInsetDrawableTest.java87 Resources r = mContext.getResources(); in testInflate() local
88 XmlPullParser parser = r.getXml(R.layout.framelayout_layout); in testInflate()
92 insetDrawable.inflate(r, parser, attrs); in testInflate()
153 Rect r = new Rect(); in testGetPadding_dimension() local
154 assertEquals(0, r.left); in testGetPadding_dimension()
155 assertEquals(0, r.top); in testGetPadding_dimension()
156 assertEquals(0, r.right); in testGetPadding_dimension()
157 assertEquals(0, r.bottom); in testGetPadding_dimension()
159 assertTrue(insetDrawable.getPadding(r)); in testGetPadding_dimension()
161 assertEquals(1, r.left); in testGetPadding_dimension()
[all …]
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/new_array/
DTest_new_array.java34 int[] r = t.run(10); in testN1() local
35 int l = r.length; in testN1()
40 assertEquals(0, r[i]); in testN1()
50 boolean[] r = t.run(10); in testN2()
51 int l = r.length; in testN2()
56 assertFalse(r[i]); in testN2()
65 Object[] r = t.run(10); in testN3() local
66 int l = r.length; in testN3()
71 assertNull(r[i]); in testN3()
80 int[] r = t.run(0); in testB1() local
[all …]
/cts/tests/tests/util/src/android/util/cts/
DRationalTest.java56 Rational r = new Rational(1, 2); in testConstructor() local
57 assertEquals(1, r.getNumerator()); in testConstructor()
58 assertEquals(2, r.getDenominator()); in testConstructor()
61 r = new Rational(-1, 2); in testConstructor()
62 assertEquals(-1, r.getNumerator()); in testConstructor()
63 assertEquals(2, r.getDenominator()); in testConstructor()
66 r = new Rational(1, -2); in testConstructor()
67 assertEquals(-1, r.getNumerator()); in testConstructor()
68 assertEquals(2, r.getDenominator()); in testConstructor()
71 r = new Rational(-1, -2); in testConstructor()
[all …]
/cts/tests/tests/systemui/src/android/systemui/cts/
DColorUtils.java25 int r = (argb >> 16) & 0xFF; in brightness() local
29 int V = Math.max(b, Math.max(r, g)); in brightness()
35 int r = (argb >> 16) & 0xFF; in hue() local
39 int V = Math.max(b, Math.max(r, g)); in hue()
40 int temp = Math.min(b, Math.min(r, g)); in hue()
48 final float cr = (V - r) / vtemp; in hue()
52 if (r == V) { in hue()
/cts/tests/tests/rscpp/src/android/cts/rscpp/
DRSUtils.java30 Random r = new Random(seed); in genRandom() local
32 array[i] = r.nextFloat() * factor + offset; in genRandom()
38 Random r = new Random(seed); in genRandom() local
44 array[i * stride + j] = r.nextFloat() * factor + offset; in genRandom()
50 Random r = new Random(seed); in genRandom() local
52 array[i] = (r.nextInt(max) * factor + offset); in genRandom()
58 Random r = new Random(seed); in genRandom() local
64 array[i * stride + j] = r.nextInt() * factor + offset; in genRandom()
71 Random r = new Random(seed); in genRandom() local
77 array[i * stride + j] = r.nextInt(max) * factor + offset; in genRandom()
/cts/tools/utils/
DbuildCts.py61 pattern = re.compile(r'^\s*([^:#=\s]+)\s*:=\s*(.*?[^\\])$', re.MULTILINE + re.DOTALL)
138 plan.Exclude(r'android\.signature')
139 plan.Exclude(r'android\.core.*')
143 plan.Include(r'android\.core\.tests.*')
144 plan.Exclude(r'android\.core\.tests\.libcore\.package\.harmony*')
149 plan.Include(r'android\.core\.tests\.libcore\.package\.harmony*')
153 plan.Include(r'android\.core\.vm-tests-tf')
157 plan.Include(r'android\.tests\.appsecurity')
184 plan.Exclude(r'android\.browser')
194 plan.Include(r'android\.browser')
[all …]
/cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/userrestrictions/
DBaseUserRestrictionsTest.java115 for (String r : ALL_USER_RESTRICTIONS) { in assertRestrictions()
116 assertLayeredRestriction(r, expected.contains(r)); in assertRestrictions()
223 for (String r : getAllowedRestrictions()) { in testSetAllRestrictionsIndividually()
225 assertSetClearUserRestriction(r); in testSetAllRestrictionsIndividually()
227 assertRestrictions(new HashSet<>(Arrays.asList(new String[]{r}))); in testSetAllRestrictionsIndividually()
230 assertClearUserRestriction(r); in testSetAllRestrictionsIndividually()
239 for (String r : getAllowedRestrictions()) { in testSetAllRestrictions()
240 assertSetClearUserRestriction(r); in testSetAllRestrictions()
242 for (String r : getDisallowedRestrictions()) { in testSetAllRestrictions()
243 assertCannotSetUserRestriction(r); in testSetAllRestrictions()
[all …]
/cts/tests/app/src/android/app/cts/
DActivityManager_RunningAppProcessInfoTest.java47 final RunningAppProcessInfo r = new RunningAppProcessInfo(); in testRunningAppProcessInfo() local
49 r.readFromParcel(p); in testRunningAppProcessInfo()
51 assertEquals(rap.pid, r.pid); in testRunningAppProcessInfo()
52 assertEquals(rap.processName, r.processName); in testRunningAppProcessInfo()
53 assertEquals(rap.pkgList.length, r.pkgList.length); in testRunningAppProcessInfo()
56 assertEquals(rap.pkgList[i], r.pkgList[i]); in testRunningAppProcessInfo()
/cts/apps/CameraITS/tests/scene1/
Dtest_format_combos.py77 for r,req in enumerate(reqs):
82 successes.append((n,r,f,b))
83 print "==> Success[%02d]: R%d F%d B%d" % (n,r,f,b)
95 "%s_n%02d_r%d_f%d_b%d_c%d.jpg"%(NAME,n,r,f,b,c))
99 print "==> Failure[%02d]: R%d F%d B%d" % (n,r,f,b)
100 failures.append((n,r,f,b))
111 for (n,r,f,b) in failures:
112 print " %02d: R%d F%d B%d" % (n,r,f,b)
114 for (n,r,f,b) in successes:
115 print " %02d: R%d F%d B%d" % (n,r,f,b)
/cts/tests/tests/os/src/android/os/cts/
DHandlerTest.java73 MockRunnable r = new MockRunnable(); in testPostAtTime1() local
74 assertTrue(mHandler.postAtTime(r, SystemClock.uptimeMillis() + RUNTIME)); in testPostAtTime1()
75 assertFalse(r.isRun()); in testPostAtTime1()
77 assertTrue(r.isRun()); in testPostAtTime1()
78 mHandler.removeCallbacks(r); in testPostAtTime1()
82 MockRunnable r = new MockRunnable(); in testPostAtTime2() local
84 assertTrue(mHandler.postAtTime(r, token, SystemClock.uptimeMillis() + RUNTIME)); in testPostAtTime2()
85 assertFalse(r.isRun()); in testPostAtTime2()
87 assertTrue(r.isRun()); in testPostAtTime2()
88 mHandler.removeCallbacks(r); in testPostAtTime2()
[all …]
/cts/hostsidetests/theme/src/android/theme/cts/
DColorUtils.java41 int Rr = clamp(r(src) + r(dst) * x); in blendSrcOver()
78 public static int r(int color) { in r() method in ColorUtils
105 RGBToLAB(r(color), g(color), b(color), outLab); in colorToLAB()
122 public static void RGBToLAB(int r, int g, int b, double[] outLab) { in RGBToLAB() argument
124 RGBToXYZ(r, g, b, outLab); in RGBToLAB()
147 public static void RGBToXYZ(int r, int g, int b, double[] outXyz) { in RGBToXYZ() argument
152 double sr = r / 255.0; in RGBToXYZ()

12345678