Searched refs:in2 (Results 1 - 11 of 11) sorted by relevance

/frameworks/compile/slang/tests/P_reduce_general_inputs/
H A DScriptC_reduce_general_inputs.java.expect122 // in2 = "b"
123 public result_int reduce_my_half_half_0(short[] in1, short[] in2) {
131 // Verify that "in2" is non-null.
132 if (in2 == null) {
133 throw new RSIllegalArgumentException("Array \"in2\" is null!");
136 if (in1.length != in2.length) {
137 throw new RSRuntimeException("Array length mismatch between parameters \"in1\" and \"in2\"!");
139 Allocation ain2 = Allocation.createSized(mRSLocal, __F16, in2.length);
141 ain2.copyFrom(in2);
186 // in2
[all...]
/frameworks/rs/tests/lldb/java/SingleSource/src/rs/
H A Drs_single_source.rs48 void script_invoke_1(rs_allocation out, rs_allocation in1, rs_allocation in2)
56 rsForEach(kernel_2, out, in1, in2);
/frameworks/rs/tests/lldb/java/SingleSource/src/com/android/rs/singlesource/
H A DMainActivity.java57 float [] in2 = new float[]{ 5.f, 6.f, 7.f, 8.f };
58 mAllocIn2.copyFrom(in2);
/frameworks/rs/
H A DrsCppUtils.h103 T rsMin(T in1, T in2) argument
105 if (in1 > in2) {
106 return in2;
112 T rsMax(T in1, T in2) { argument
113 if (in1 < in2) {
114 return in2;
/frameworks/base/tools/aapt/tests/
H A DPseudolocales_test.cpp36 static void compound_helper(const char* in1, const char* in2, const char *in3, argument
41 pseudo.text(String16(String8(in2))) + \
/frameworks/compile/slang/tests/P_reduce_general_examples_explicit/
H A DScriptC_reduce_general_examples_explicit.java.expect264 // in2 = "in2"
265 public result_float reduce_dp_init(float[] in1, float[] in2) {
273 // Verify that "in2" is non-null.
274 if (in2 == null) {
275 throw new RSIllegalArgumentException("Array \"in2\" is null!");
278 if (in1.length != in2.length) {
279 throw new RSRuntimeException("Array length mismatch between parameters \"in1\" and \"in2\"!");
281 Allocation ain2 = Allocation.createSized(mRSLocal, __F32, in2.length);
283 ain2.copyFrom(in2);
[all...]
/frameworks/base/tools/aapt2/compile/
H A DPseudolocalizer_test.cpp41 const char* in1, const char* in2, const char* in3, const char* expected,
44 std::string result = pseudo.Start() + pseudo.Text(in1) + pseudo.Text(in2) +
40 CompoundHelper( const char* in1, const char* in2, const char* in3, const char* expected, Pseudolocalizer::Method method) argument
/frameworks/compile/slang/tests/P_reduce_general_examples/
H A DScriptC_reduce_general_examples.java.expect269 // in2 = "in2"
270 public result_float reduce_dp(float[] in1, float[] in2) {
278 // Verify that "in2" is non-null.
279 if (in2 == null) {
280 throw new RSIllegalArgumentException("Array \"in2\" is null!");
283 if (in1.length != in2.length) {
284 throw new RSRuntimeException("Array length mismatch between parameters \"in1\" and \"in2\"!");
286 Allocation ain2 = Allocation.createSized(mRSLocal, __F32, in2.length);
288 ain2.copyFrom(in2);
[all...]
/frameworks/compile/slang/tests/P_reduce_general_examples_backward/
H A DScriptC_reduce_general_examples_backward.java.expect269 // in2 = "in2"
270 public result_float reduce_dp(float[] in1, float[] in2) {
278 // Verify that "in2" is non-null.
279 if (in2 == null) {
280 throw new RSIllegalArgumentException("Array \"in2\" is null!");
283 if (in1.length != in2.length) {
284 throw new RSRuntimeException("Array length mismatch between parameters \"in1\" and \"in2\"!");
286 Allocation ain2 = Allocation.createSized(mRSLocal, __F32, in2.length);
288 ain2.copyFrom(in2);
[all...]
/frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/
H A DUT_reduce.java948 private long sumgcd(final int in1[], final int in2[]) { argument
949 assertEquals("sumgcd input lengths", in1.length, in2.length);
953 int a = in1[i], b = in2[i];
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 352 milliseconds