HomeSort by relevance Sort by last modified time
    Searched defs:outArray (Results 1 - 25 of 53) sorted by null

1 2 3

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationResize.java 47 int[] outArray = new int[INPUTSIZE];
59 mOut.copyTo(outArray);
61 assertEquals("Incorrect value @ idx = " + i + " | ", inArray[i], outArray[i]);
AllocationCopy2DRangeTest.java 36 int[] outArray = new int[width * height];
55 mOutAllocation.copyTo(outArray);
57 compareTwoArrays(inArray, outArray, width*height));
RsUnpackColor8888Test.java 46 float[] outArray = new float[INPUTSIZE * 4];
57 mAllocationOut.copyTo(outArray);
59 for (int i = 0; i < outArray.length; i += 4) {
67 assertEquals(refArray[i+j], outArray[i+j]);
SendToClient.java 38 int outArray[] = new int[4];
43 outArray[0] = mID;
44 outArray[1] = mData[0];
45 outArray[2] = mData[1];
46 outArray[3] = mData[2];
78 assertEquals(createErrorMsgF(i, inArray[i], outArray[i]),
79 inArray[i], outArray[i]);
87 outArray[0] = 0;
102 assertEquals(createErrorMsgF(1, Id, outArray[0]), Id, outArray[0])
    [all...]
rsAllocationCopyTest.java 35 byte[] outArray = new byte[arr_len];
43 aOut.copyFrom(outArray);
52 aOut.copyTo(outArray);
57 if (inArray[i] != outArray[i]) {
62 if (outArray[i] != 0) {
80 short[] outArray = new short[arr_len];
90 aOut.copyFrom(outArray);
99 aOut.copyTo(outArray);
104 if (inArray[i] != outArray[i]) {
109 if (outArray[i] != 0)
    [all...]
AllocationCopyPaddedTest.java 31 byte[] outArray = new byte[arr_len];
39 alloc.copyTo(outArray);
43 if (inArray[i] != outArray[i]) {
60 byte[] outArray = new byte[arr_len];
68 alloc.copyTo(outArray);
72 if (inArray[i] != outArray[i]) {
90 byte[] outArray = new byte[arr_len];
98 alloc.copyTo(outArray);
102 if (inArray[i] != outArray[i]) {
118 short[] outArray = new short[arr_len]
    [all...]
AllocationCopyToTest.java 41 byte[] outArray = new byte[arr_len];
50 alloc.copy1DRangeTo(offset, count, outArray);
54 if (inArray[i] != outArray[i]) {
60 if (outArray[i] != 0) {
75 short[] outArray = new short[arr_len];
88 alloc.copy1DRangeTo(offset, count, outArray);
91 alloc.copy1DRangeTo(offset, count, (Object) outArray);
96 if (inArray[i] != outArray[i]) {
102 if (outArray[i] != 0) {
123 int[] outArray = new int[arr_len]
    [all...]
DebugContext.java 143 byte[] outArray = new byte[ArrLen];
145 aOut.copyFrom(outArray);
152 short[] outArray = new short[ArrLen];
154 aOut.copyFrom(outArray);
200 byte[] outArray = new byte[AC.ArrLen];
202 AC.aOut.copyTo(outArray);
205 if (inArray[i] != outArray[i]) {
210 if (outArray[i] != 0) {
249 short[] outArray = new short[AC.ArrLen];
251 AC.aOut.copyTo(outArray);
    [all...]
  /frameworks/rs/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/
UT_alloc_copy.java 63 byte[] outArray = new byte[arr_len];
72 alloc.copy1DRangeTo(offset, count, outArray);
76 if (inArray[i] != outArray[i]) {
78 android.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]);
83 if (outArray[i] != 0) {
85 android.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]);
102 short[] outArray = new short[arr_len];
114 alloc.copy1DRangeTo(offset, count, outArray);
118 if (inArray[i] != outArray[i]) {
120 android.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i])
    [all...]
UT_alloc_copyPadded.java 88 byte[] outArray = new byte[arr_len];
96 alloc.copyTo(outArray);
100 if (inArray[i] != outArray[i]) {
102 android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]);
120 byte[] outArray = new byte[arr_len];
128 alloc.copyTo(outArray);
132 if (inArray[i] != outArray[i]) {
134 android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]);
153 byte[] outArray = new byte[arr_len];
161 alloc.copyTo(outArray);
    [all...]
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_alloc_copy.java 63 byte[] outArray = new byte[arr_len];
72 alloc.copy1DRangeTo(offset, count, outArray);
76 if (inArray[i] != outArray[i]) {
78 android.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]);
83 if (outArray[i] != 0) {
85 android.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]);
102 short[] outArray = new short[arr_len];
114 alloc.copy1DRangeTo(offset, count, outArray);
118 if (inArray[i] != outArray[i]) {
120 android.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i])
    [all...]
UT_alloc_copyPadded.java 88 byte[] outArray = new byte[arr_len];
96 alloc.copyTo(outArray);
100 if (inArray[i] != outArray[i]) {
102 android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]);
120 byte[] outArray = new byte[arr_len];
128 alloc.copyTo(outArray);
132 if (inArray[i] != outArray[i]) {
134 android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]);
153 byte[] outArray = new byte[arr_len];
161 alloc.copyTo(outArray);
    [all...]
  /frameworks/base/core/jni/
android_os_Debug.cpp 774 jlong* outArray = env->GetLongArrayElements(out, 0);
775 if (outArray != NULL) {
777 outArray[i] = mem[i];
780 env->ReleaseLongArrayElements(out, outArray, 0);
    [all...]
  /system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
HidlTestJava.java 499 int[] outArray = proxy.doSomethingElse(paramArray);
500 ExpectTrue(java.util.Objects.deepEquals(outArray, expectedOutArray));
526 String[] outArray = proxy.haveSomeStrings(stringArray);
527 ExpectTrue(java.util.Arrays.deepEquals(outArray, expectedOutArray));
  /external/dexmaker/lib/
dalvik-dx-1.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilts/tools/common/m2/repository/com/jakewharton/android/repackaged/dalvik-dx/1/
dalvik-dx-1.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.0.CR3/
netty-codec-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.3.Final/
netty-codec-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.6.Final/
netty-codec-4.1.6.Final.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0/
builder-2.1.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-beta1/
builder-2.1.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-beta3/
builder-2.1.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-rc1/
builder-2.1.0-rc1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.2/
builder-2.1.2.jar 

Completed in 1169 milliseconds

1 2 3