Home
last modified time | relevance | path

Searched refs:outArray (Results 1 – 15 of 15) sorted by relevance

/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
DUT_alloc_copyPadded.java88 byte[] outArray = new byte[arr_len]; in testAllocation_Byte3_1D()
96 alloc.copyTo(outArray); in testAllocation_Byte3_1D()
100 if (inArray[i] != outArray[i]) { in testAllocation_Byte3_1D()
102 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Byte3_1D()
120 byte[] outArray = new byte[arr_len]; in testAllocation_Byte3_2D()
128 alloc.copyTo(outArray); in testAllocation_Byte3_2D()
132 if (inArray[i] != outArray[i]) { in testAllocation_Byte3_2D()
134 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Byte3_2D()
153 byte[] outArray = new byte[arr_len]; in testAllocation_Byte3_3D()
161 alloc.copyTo(outArray); in testAllocation_Byte3_3D()
[all …]
DUT_alloc_copy.java63 byte[] outArray = new byte[arr_len]; in allocation_copy1DRangeTo_Byte()
72 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Byte()
76 if (inArray[i] != outArray[i]) { in allocation_copy1DRangeTo_Byte()
78 …ndroid.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in allocation_copy1DRangeTo_Byte()
83 if (outArray[i] != 0) { in allocation_copy1DRangeTo_Byte()
85 …ndroid.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in allocation_copy1DRangeTo_Byte()
102 short[] outArray = new short[arr_len]; in allocation_copy1DRangeTo_Short() local
114 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Short()
118 if (inArray[i] != outArray[i]) { in allocation_copy1DRangeTo_Short()
120 …ndroid.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in allocation_copy1DRangeTo_Short()
[all …]
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
DUT_alloc_copyPadded.java88 byte[] outArray = new byte[arr_len]; in testAllocation_Byte3_1D()
96 alloc.copyTo(outArray); in testAllocation_Byte3_1D()
100 if (inArray[i] != outArray[i]) { in testAllocation_Byte3_1D()
102 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Byte3_1D()
120 byte[] outArray = new byte[arr_len]; in testAllocation_Byte3_2D()
128 alloc.copyTo(outArray); in testAllocation_Byte3_2D()
132 if (inArray[i] != outArray[i]) { in testAllocation_Byte3_2D()
134 … android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]); in testAllocation_Byte3_2D()
153 byte[] outArray = new byte[arr_len]; in testAllocation_Byte3_3D()
161 alloc.copyTo(outArray); in testAllocation_Byte3_3D()
[all …]
DUT_alloc_copy.java63 byte[] outArray = new byte[arr_len]; in allocation_copy1DRangeTo_Byte()
72 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Byte()
76 if (inArray[i] != outArray[i]) { in allocation_copy1DRangeTo_Byte()
78 …ndroid.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in allocation_copy1DRangeTo_Byte()
83 if (outArray[i] != 0) { in allocation_copy1DRangeTo_Byte()
85 …ndroid.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in allocation_copy1DRangeTo_Byte()
102 short[] outArray = new short[arr_len]; in allocation_copy1DRangeTo_Short() local
114 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Short()
118 if (inArray[i] != outArray[i]) { in allocation_copy1DRangeTo_Short()
120 …ndroid.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]); in allocation_copy1DRangeTo_Short()
[all …]
/frameworks/compile/slang/tests/P_reduce_general_result/
DScriptC_reduce_general_result.java.expect115 byte[] outArray = new byte[7];
116 mOut.copyTo(outArray);
119 result[Idx] = outArray[Idx] != 0;
156 byte[] outArray = new byte[7];
157 mOut.copyTo(outArray);
158 mResult = outArray;
192 byte[] outArray = new byte[14];
193 mOut.copyTo(outArray);
196 result[Idx] = new Byte2(outArray[2*Idx+0], outArray[2*Idx+1]);
233 byte[] outArray = new byte[28];
[all …]
/frameworks/compile/slang/tests/P_reduce_general_examples_halter/
DScriptC_reduce_general_examples_halter.java.expect51 int[] outArray = new int[1];
52 mOut.copyTo(outArray);
53 mResult = outArray[0];
87 int[] outArray = new int[2];
88 mOut.copyTo(outArray);
89 mResult = new Int2(outArray[0], outArray[1]);
/frameworks/compile/slang/tests/P_reduce_general_examples_backward/
DScriptC_reduce_general_examples_backward.java.expect57 int[] outArray = new int[256];
58 mOut.copyTo(outArray);
61 result[Idx] = ((long) ((outArray[Idx]) & 0xffffffffL));
98 float[] outArray = new float[1];
99 mOut.copyTo(outArray);
100 mResult = outArray[0];
134 int[] outArray = new int[1];
135 mOut.copyTo(outArray);
136 mResult = outArray[0];
170 int[] outArray = new int[2];
[all …]
/frameworks/compile/slang/tests/P_reduce_general_examples/
DScriptC_reduce_general_examples.java.expect57 int[] outArray = new int[256];
58 mOut.copyTo(outArray);
61 result[Idx] = ((long) ((outArray[Idx]) & 0xffffffffL));
98 float[] outArray = new float[1];
99 mOut.copyTo(outArray);
100 mResult = outArray[0];
134 int[] outArray = new int[1];
135 mOut.copyTo(outArray);
136 mResult = outArray[0];
170 int[] outArray = new int[2];
[all …]
/frameworks/compile/slang/tests/P_reduce_general_examples_explicit/
DScriptC_reduce_general_examples_explicit.java.expect55 int[] outArray = new int[256];
56 mOut.copyTo(outArray);
59 result[Idx] = ((long) ((outArray[Idx]) & 0xffffffffL));
96 float[] outArray = new float[1];
97 mOut.copyTo(outArray);
98 mResult = outArray[0];
132 int[] outArray = new int[1];
133 mOut.copyTo(outArray);
134 mResult = outArray[0];
/frameworks/compile/slang/tests/P_reduce_general_struct/
DScriptC_reduce_general_struct.java.expect51 int[] outArray = new int[1];
52 mOut.copyTo(outArray);
53 mResult = outArray[0];
/frameworks/compile/slang/tests/P_reduce_general_duplicate_array/
DScriptC_reduce_general_duplicate_array.java.expect49 int[] outArray = new int[4];
50 mOut.copyTo(outArray);
51 mResult = outArray;
/frameworks/base/core/jni/
Dandroid_os_Debug.cpp774 jlong* outArray = env->GetLongArrayElements(out, 0); in android_os_Debug_getMemInfo() local
775 if (outArray != NULL) { in android_os_Debug_getMemInfo()
777 outArray[i] = mem[i]; in android_os_Debug_getMemInfo()
780 env->ReleaseLongArrayElements(out, outArray, 0); in android_os_Debug_getMemInfo()
/frameworks/compile/slang/tests/P_reduce_general_accumulator/
DScriptC_reduce_general_accumulator.java.expect49 int[] outArray = new int[1];
50 mOut.copyTo(outArray);
51 mResult = outArray[0];
/frameworks/compile/slang/tests/P_reduce_general_input/
DScriptC_reduce_general_input.java.expect117 int[] outArray = new int[1];
118 mOut.copyTo(outArray);
119 mResult = outArray[0];
/frameworks/compile/slang/tests/P_reduce_general_inputs/
DScriptC_reduce_general_inputs.java.expect89 int[] outArray = new int[1];
90 mOut.copyTo(outArray);
91 mResult = outArray[0];