Home
last modified time | relevance | path

Searched refs:in1 (Results 1 – 8 of 8) sorted by relevance

/cts/tests/tests/rscpp/src/android/cts/rscpp/
Dverify.rscript37 static bool verify_float4(rs_allocation in1, rs_allocation in2)
39 uint32_t w = rsAllocationGetDimX(in1);
40 uint32_t h = rsAllocationGetDimY(in1);
43 float4 pref = rsGetElementAt_float4(in1, x, y);
59 static bool verify_float3(rs_allocation in1, rs_allocation in2)
61 uint32_t w = rsAllocationGetDimX(in1);
62 uint32_t h = rsAllocationGetDimY(in1);
65 float3 pref = rsGetElementAt_float3(in1, x, y);
80 static bool verify_float2(rs_allocation in1, rs_allocation in2)
82 uint32_t w = rsAllocationGetDimX(in1);
[all …]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
Dverify.rscript32 static bool verify_float4(rs_allocation in1, rs_allocation in2) {
33 uint32_t w = rsAllocationGetDimX(in1);
34 uint32_t h = rsAllocationGetDimY(in1);
37 float4 pref = rsGetElementAt_float4(in1, x, y);
53 static bool verify_float3(rs_allocation in1, rs_allocation in2) {
54 uint32_t w = rsAllocationGetDimX(in1);
55 uint32_t h = rsAllocationGetDimY(in1);
58 float3 pref = rsGetElementAt_float3(in1, x, y);
73 static bool verify_float2(rs_allocation in1, rs_allocation in2) {
74 uint32_t w = rsAllocationGetDimX(in1);
[all …]
DFloat16ArithmeticTest.java87 short in1 = Float16TestData.input[x]; in checkFloat16Output() local
103 if (!Float16Utils.isFloat16FiniteNonZero(in1) || in checkFloat16Output()
116 message.append("\nInput 1: " + Short.toString(in1)); 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
241 in1 = Allocation.createTyped(mRS, connect); in testScriptGroupTorture()
248 node1.forEach_memset(in1); in testScriptGroupTorture()
279 group.setInput(node1.getKernelID_arith(), in1); in testScriptGroupTorture() local
298 in1.destroy(); in testScriptGroupTorture()
/cts/tests/tests/rsblas/src/android/renderscript/cts/
Dverify.rscript77 static bool verify_CMatrix(rs_allocation in1, rs_allocation in2, double l2Norm, bool isUpperMatrix)…
78 uint32_t w = rsAllocationGetDimX(in1);
79 uint32_t h = rsAllocationGetDimY(in1);
87 float2 pref = rsGetElementAt_float2(in1, x, y);
101 static bool verify_SMatrix(rs_allocation in1, rs_allocation in2, double l2Norm, bool isUpperMatrix)…
102 uint32_t w = rsAllocationGetDimX(in1);
103 uint32_t h = rsAllocationGetDimY(in1);
111 float pref = rsGetElementAt_float(in1, x, y);
125 static bool verify_ZMatrix(rs_allocation in1, rs_allocation in2, double l2Norm, bool isUpperMatrix)…
126 uint32_t w = rsAllocationGetDimX(in1);
[all …]
/cts/tests/tests/os/src/android/os/cts/
DParcelFileDescriptorTest.java269 AutoCloseInputStream in1 = new AutoCloseInputStream(pf); in testClose() local
271 assertEquals(0, in1.read()); in testClose()
273 in1.close(); in testClose()
/cts/tests/tests/security/src/android/security/cts/
DStagefrightTest.java1945 InputStream in1 = new BufferedInputStream(url.openStream()); in verifyServer() local
1952 int b1 = in1.read(); in verifyServer()
1960 in1.close(); in verifyServer()