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

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationResize.java 48 int[] inArray = new int[INPUTSIZE];
50 inArray[i] = random.nextInt();
52 mIn.copy1DRangeFrom(0, INPUTSIZE, inArray);
61 assertEquals("Incorrect value @ idx = " + i + " | ", inArray[i], outArray[i]);
AllocationCopy2DRangeTest.java 35 int[] inArray = new int[width * height];
39 inArray[i] = random.nextInt();
47 mInAllocation.copy2DRangeFrom(0, 0, width, height, inArray);
57 compareTwoArrays(inArray, outArray, width*height));
SendToClient.java 53 int[] inArray = new int[4];
55 inArray[i] = random.nextInt(1000);
58 mInAllocation.copyFrom(inArray);
69 for (int i=0; i<inArray.length; i++) {
70 assertEquals(createErrorMsgF(i, inArray[i], outArray[i]),
71 inArray[i], outArray[i]);
RsPackColorTo8888Test.java 71 float[] inArray = new float[INPUTSIZE * 4];
74 RSUtils.genRandomFloats(seed, 0.0f, 1.0f, inArray, false);
75 mAllocationIn.copy1DRangeFrom(0, INPUTSIZE, inArray);
83 Float3 inValues = new Float3(inArray[offset], inArray[offset + 1], inArray[offset + 2]);
98 float[] inArray = new float[INPUTSIZE * 4];
101 RSUtils.genRandomFloats(seed, 0.0f, 1.0f, inArray, false);
102 mAllocationIn.copy1DRangeFrom(0, INPUTSIZE, inArray);
110 Float4 inValues = new Float4( inArray[offset],inArray[offset + 1],inArray[offset + 2],inArray[offset + 3])
    [all...]
RSBaseCompute.java 119 double[] inArray = new double[INPUTSIZE * width];
123 RSUtils.genRandomDoubles(seed, min, max, inArray, includeExtremes);
124 alloc.copy1DRangeFrom(0, INPUTSIZE, inArray);
126 float[] inArray = new float[INPUTSIZE * width];
130 RSUtils.genRandomFloats(seed, min, max, inArray, includeExtremes);
131 alloc.copy1DRangeFrom(0, INPUTSIZE, inArray);
133 long[] inArray = new long[INPUTSIZE * width];
134 RSUtils.genRandomLongs(seed, inArray, true, 63);
135 alloc.copy1DRangeFrom(0, INPUTSIZE, inArray);
137 long[] inArray = new long[INPUTSIZE * width]
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharsetEncoderDecoderBufferTest.java 73 byte[] inArray = {(byte)'a', (byte)'b'};
74 ByteBuffer inWithArray = ByteBuffer.wrap(inArray);
77 assertEquals('a', inArray[0]);
78 assertEquals('b', inArray[1]);
86 assertEquals('a', inArray[0]);
87 assertEquals('b', inArray[1]);
131 char[] inArray = {'a', 'b'};
132 CharBuffer inWithArray = CharBuffer.wrap(inArray);
136 assertEquals('a', inArray[0]);
137 assertEquals('b', inArray[1])
    [all...]
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 

Completed in 5094 milliseconds