Searched refs:outArray (Results 1 – 5 of 5) sorted by relevance
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
D | UT_alloc_copyPadded.java | 88 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 …]
|
D | UT_alloc_copy.java | 63 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/ |
D | UT_alloc_copyPadded.java | 88 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 …]
|
D | UT_alloc_copy.java | 63 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/base/core/jni/ |
D | android_os_Debug.cpp | 713 jlong* outArray = env->GetLongArrayElements(out, 0); in android_os_Debug_getMemInfo() local 714 if (outArray != NULL) { in android_os_Debug_getMemInfo() 716 outArray[i] = mem[i]; in android_os_Debug_getMemInfo() 719 env->ReleaseLongArrayElements(out, outArray, 0); in android_os_Debug_getMemInfo()
|