Home
last modified time | relevance | path

Searched refs:in2 (Results 1 – 9 of 9) sorted by relevance

/cts/tests/tests/rscpp/src/android/cts/rscpp/
Dverify.rscript37 static bool verify_float4(rs_allocation in1, rs_allocation in2)
44 float4 ptst = rsGetElementAt_float4(in2, x, y);
59 static bool verify_float3(rs_allocation in1, rs_allocation in2)
66 float3 ptst = rsGetElementAt_float3(in2, x, y);
80 static bool verify_float2(rs_allocation in1, rs_allocation in2)
87 float2 ptst = rsGetElementAt_float2(in2, x, y);
100 static bool verify_float(rs_allocation in1, rs_allocation in2)
107 float ptst = rsGetElementAt_float(in2, x, y);
119 static bool verify_uchar4(rs_allocation in1, rs_allocation in2)
127 int4 ptst = convert_int4(rsGetElementAt_uchar4(in2, x, y));
[all …]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
Dverify.rscript32 static bool verify_float4(rs_allocation in1, rs_allocation in2) {
38 float4 ptst = rsGetElementAt_float4(in2, x, y);
53 static bool verify_float3(rs_allocation in1, rs_allocation in2) {
59 float3 ptst = rsGetElementAt_float3(in2, x, y);
73 static bool verify_float2(rs_allocation in1, rs_allocation in2) {
79 float2 ptst = rsGetElementAt_float2(in2, x, y);
92 static bool verify_float(rs_allocation in1, rs_allocation in2) {
98 float ptst = rsGetElementAt_float(in2, x, y);
110 static bool verify_uchar4(rs_allocation in1, rs_allocation in2) {
117 int4 ptst = convert_int4(rsGetElementAt_uchar4(in2, x, y));
[all …]
DFloat16ArithmeticTest.java88 short in2 = Float16TestData.input[y]; in checkFloat16Output() local
104 !Float16Utils.isFloat16FiniteNonZero(in2)) { in checkFloat16Output()
117 message.append("\nInput 2: " + Short.toString(in2)); in checkFloat16Output()
Dsingle_source_script.rscript39 void testMultiInput(rs_allocation in1, rs_allocation in2, rs_allocation out) {
40 rsForEach(goo, in1, in2, out);
DScriptGroupTest.java240 Allocation in1, in2, out, resultAlloc; in testScriptGroupTorture() local
242 in2 = Allocation.createTyped(mRS, connect); in testScriptGroupTorture()
250 node1.forEach_memset(in2); in testScriptGroupTorture()
280 group.setInput(node3.getKernelID_arith(), in2); in testScriptGroupTorture() local
299 in2.destroy(); in testScriptGroupTorture()
/cts/suite/audio_quality/test/
DSignalProcessingInterfaceTest.cpp63 TaskCase::Value in2(1.0f); in TEST_F() local
65 void* inputs[4] = { &in0, &in1, &in2, &in3 }; in TEST_F()
86 ASSERT_TRUE(in2 == out2); in TEST_F()
159 android::sp<Buffer> in2(new Buffer(8, 8, false)); in TEST_F() local
160 char* data2 = in2->getData(); in TEST_F()
161 for (size_t i = 0; i < in2->getSize(); i++) { in TEST_F()
173 void* inputs[8] = { &in0, &in1, &in2, &in3, &in4, &in5, &in6, &in7 }; in TEST_F()
193 ASSERT_TRUE(*(in2.get()) == *(out1.get())); in TEST_F()
/cts/tests/tests/rsblas/src/android/renderscript/cts/
Dverify.rscript77 static bool verify_CMatrix(rs_allocation in1, rs_allocation in2, double l2Norm, bool isUpperMatrix)…
88 float2 ptst = rsGetElementAt_float2(in2, x, y);
101 static bool verify_SMatrix(rs_allocation in1, rs_allocation in2, double l2Norm, bool isUpperMatrix)…
112 float ptst = rsGetElementAt_float(in2, x, y);
125 static bool verify_ZMatrix(rs_allocation in1, rs_allocation in2, double l2Norm, bool isUpperMatrix)…
136 double2 ptst = rsGetElementAt_double2(in2, x, y);
149 static bool verify_DMatrix(rs_allocation in1, rs_allocation in2, double l2Norm, bool isUpperMatrix)…
160 double ptst = rsGetElementAt_double(in2, x, y);
/cts/tests/tests/os/src/android/os/cts/
DParcelFileDescriptorTest.java194 AutoCloseInputStream in2 = new AutoCloseInputStream(pf); in testClose() local
196 assertEquals(0, in2.read()); in testClose()
201 in2.close(); in testClose()
/cts/tests/tests/security/src/android/security/cts/
DStagefrightTest.java1483 InputStream in2 = new BufferedInputStream(fd.createInputStream()); in verifyServer() local
1487 int b2 = in2.read(); in verifyServer()
1495 in2.close(); in verifyServer()