Searched refs:input1 (Results 1 – 2 of 2) sorted by relevance
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
D | ReduceTest.java | 493 private int sumXor(final int[] input1, final int[] input2) { in sumXor() argument 495 for (int idx = 0; idx < input1.length; ++idx) in sumXor() 496 sum += (input1[idx] ^ input2[idx]); in sumXor() 501 final int[] input1 = createInputArrayInt(100000, 13, 1 << 13); in testSumXor() local 504 final int javaRslt = sumXor(input1, input2); in testSumXor() 505 final int rsRslt = mScript.reduce_sumxor(input1, input2).get(); in testSumXor() 536 final int[] input1 = createInputArrayInt(90000, 16, 1 << 13); in testBadSumXorInputLengthMismatch() local 542 mScript.reduce_sumxor(input1, input2); in testBadSumXorInputLengthMismatch() 602 private long sillySum(final byte[] input1, final float[] input2, final int[] input3) { in sillySum() argument 604 assertEquals(input1.length, input2.length); in sillySum() [all …]
|
D | ScriptGroupTest.java | 489 Allocation input1 = Allocation.createSized(mRS, Element.I32_4(mRS), ARRAY_SIZE); in testBuilder2KernelOutputToGlobal() local 514 ((Allocation)group.execute(input, input1)[0]).copyTo(a); in testBuilder2KernelOutputToGlobal() 519 input1.destroy(); in testBuilder2KernelOutputToGlobal()
|