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

1 2 3 4

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
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...]
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...]
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...]
RsPackColorTo8888Test.java 78 byte[] outArray = new byte[INPUTSIZE * 4];
86 mAllocationOut.copyTo(outArray);
87 for (int i = 0; i < outArray.length; i += 4) {
96 assertEquals(refArray[i+j] & 0xff, outArray[i+j] & 0xff);
108 byte[] outArray = new byte[INPUTSIZE * 4];
116 mAllocationOut.copyTo(outArray);
117 for (int i = 0; i < outArray.length; i += 4) {
126 assertEquals(refArray[i+j] & 0xff, outArray[i+j] & 0xff);
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]);
AllocationCopy2DRangeTest.java 36 int[] outArray = new int[width * height];
55 mOutAllocation.copyTo(outArray);
57 compareTwoArrays(inArray, outArray, width*height));
AllocationResize.java 47 int[] outArray = new int[INPUTSIZE];
59 mOut.copyTo(outArray);
61 assertEquals("Incorrect value @ idx = " + i + " | ", inArray[i], outArray[i]);
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_CompatLibLegacy/src/com/android/rs/test/
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...]
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...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_alloc_copyPadded.java 89 byte[] outArray = new byte[arr_len];
97 alloc.copyTo(outArray);
101 if (inArray[i] != outArray[i]) {
103 android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]);
121 byte[] outArray = new byte[arr_len];
129 alloc.copyTo(outArray);
133 if (inArray[i] != outArray[i]) {
135 android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]);
154 byte[] outArray = new byte[arr_len];
162 alloc.copyTo(outArray);
    [all...]
UT_alloc_copy.java 65 byte[] outArray = new byte[arr_len];
74 alloc.copy1DRangeTo(offset, count, outArray);
78 if (inArray[i] != outArray[i]) {
80 android.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]);
85 if (outArray[i] != 0) {
87 android.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]);
104 short[] outArray = new short[arr_len];
116 alloc.copy1DRangeTo(offset, count, outArray);
120 if (inArray[i] != outArray[i]) {
122 android.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i])
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_alloc_copyPadded.java 91 byte[] outArray = new byte[arr_len];
99 alloc.copyTo(outArray);
103 if (inArray[i] != outArray[i]) {
105 android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]);
123 byte[] outArray = new byte[arr_len];
131 alloc.copyTo(outArray);
135 if (inArray[i] != outArray[i]) {
137 android.util.Log.v("Alloc Padding Test", "" + i + " " + inArray[i] + " " + outArray[i]);
156 byte[] outArray = new byte[arr_len];
164 alloc.copyTo(outArray);
    [all...]
UT_alloc_copy.java 67 byte[] outArray = new byte[arr_len];
76 alloc.copy1DRangeTo(offset, count, outArray);
80 if (inArray[i] != outArray[i]) {
82 android.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]);
87 if (outArray[i] != 0) {
89 android.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i]);
106 short[] outArray = new short[arr_len];
118 alloc.copy1DRangeTo(offset, count, outArray);
122 if (inArray[i] != outArray[i]) {
124 android.util.Log.v("Allocation CopyTo Test", "Failed: " + i + " " + inArray[i] + " " + outArray[i])
    [all...]
  /frameworks/compile/slang/tests/P_reduce_general_result/
ScriptC_reduce_general_result.java.expect 118 byte[] outArray = new byte[7];
119 mOut.copyTo(outArray);
122 result[Idx] = outArray[Idx] != 0;
159 byte[] outArray = new byte[7];
160 mOut.copyTo(outArray);
161 mResult = outArray;
195 byte[] outArray = new byte[14];
196 mOut.copyTo(outArray);
199 result[Idx] = new Byte2(outArray[2*Idx+0], outArray[2*Idx+1])
    [all...]
  /frameworks/compile/slang/tests/P_reduce_general_examples_halter/
ScriptC_reduce_general_examples_halter.java.expect 54 int[] outArray = new int[1];
55 mOut.copyTo(outArray);
56 mResult = outArray[0];
90 int[] outArray = new int[2];
91 mOut.copyTo(outArray);
92 mResult = new Int2(outArray[0], outArray[1]);
  /external/mdnsresponder/mDNSWindows/DLLX/
StringServices.h 94 std::vector< BYTE > & outArray
  /external/icu/icu4c/source/i18n/
number_longnames.cpp 29 explicit PluralTableSink(UnicodeString *outArray) : outArray(outArray) {
32 outArray[i].setToBogus();
46 if (!outArray[plural].isBogus()) {
49 outArray[plural] = value.getUnicodeString(status);
55 UnicodeString *outArray;
58 // NOTE: outArray MUST have room for all StandardPlural values. No bounds checking is performed.
61 UnicodeString *outArray, UErrorCode &status) {
62 PluralTableSink sink(outArray);
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/
CipherSpi.java 769 byte[] outArray = output.array();
    [all...]
  /frameworks/compile/slang/tests/P_reduce_general_struct/
ScriptC_reduce_general_struct.java.expect 54 int[] outArray = new int[1];
55 mOut.copyTo(outArray);
56 mResult = outArray[0];
  /external/skia/experimental/docs/
interpolatorFunctions.js 24 var outArray;
46 outArray = [
53 out[cIndex][curveKey] = outArray;
77 var outArray = [];
79 outArray[i] = curve0[i] + (curve1[i] - curve0[i]) * value;
81 out[cIndex][curve0Key] = outArray;
  /external/skqp/experimental/docs/
interpolatorFunctions.js 24 var outArray;
46 outArray = [
53 out[cIndex][curveKey] = outArray;
77 var outArray = [];
79 outArray[i] = curve0[i] + (curve1[i] - curve0[i]) * value;
81 out[cIndex][curve0Key] = outArray;
  /frameworks/compile/slang/tests/P_reduce_general_examples_explicit/
ScriptC_reduce_general_examples_explicit.java.expect 58 int[] outArray = new int[256];
59 mOut.copyTo(outArray);
62 result[Idx] = ((long) ((outArray[Idx]) & 0xffffffffL));
99 float[] outArray = new float[1];
100 mOut.copyTo(outArray);
101 mResult = outArray[0];
135 int[] outArray = new int[1];
136 mOut.copyTo(outArray);
137 mResult = outArray[0];
  /frameworks/compile/slang/tests/P_reduce_general_examples/
ScriptC_reduce_general_examples.java.expect 60 int[] outArray = new int[256];
61 mOut.copyTo(outArray);
64 result[Idx] = ((long) ((outArray[Idx]) & 0xffffffffL));
101 float[] outArray = new float[1];
102 mOut.copyTo(outArray);
103 mResult = outArray[0];
137 int[] outArray = new int[1];
138 mOut.copyTo(outArray);
139 mResult = outArray[0];
173 int[] outArray = new int[2]
    [all...]

Completed in 387 milliseconds

1 2 3 4