Home
last modified time | relevance | path

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

/cts/tests/tests/renderscript/src/android/renderscript/cts/
Dverify.rs34 static bool verify_float4(rs_allocation in1, rs_allocation in2) {
40 float4 ptst = rsGetElementAt_float4(in2, x, y);
55 static bool verify_float3(rs_allocation in1, rs_allocation in2) {
61 float3 ptst = rsGetElementAt_float3(in2, x, y);
75 static bool verify_float2(rs_allocation in1, rs_allocation in2) {
81 float2 ptst = rsGetElementAt_float2(in2, x, y);
94 static bool verify_float(rs_allocation in1, rs_allocation in2) {
100 float ptst = rsGetElementAt_float(in2, x, y);
112 static bool verify_uchar4(rs_allocation in1, rs_allocation in2) {
119 int4 ptst = convert_int4(rsGetElementAt_uchar4(in2, x, y));
[all …]
DFloat16ArithmeticTest.java139 short in2 = Float16TestData.input[y]; in checkFloat16Output() local
154 if (!isFloat16FiniteNonZero(in1) || !isFloat16FiniteNonZero(in2)) in checkFloat16Output()
166 message.append("\nInput 2: " + Short.toString(in2)); in checkFloat16Output()
DScriptGroupTest.java213 Allocation in1, in2, out, resultAlloc; in testScriptGroupTorture() local
215 in2 = Allocation.createTyped(mRS, connect); in testScriptGroupTorture()
223 node1.forEach_memset(in2); in testScriptGroupTorture()
253 group.setInput(node3.getKernelID_arith(), in2); in testScriptGroupTorture() local
/cts/tests/tests/rscpp/src/android/cts/rscpp/
Dverify.rs37 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/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/os/src/android/os/cts/
DParcelFileDescriptorTest.java204 AutoCloseInputStream in2 = new AutoCloseInputStream(pf); in testClose() local
206 assertEquals(0, in2.read()); in testClose()
211 in2.close(); in testClose()