Searched refs:in1 (Results 1 - 20 of 20) sorted by relevance

/frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/
H A Dmulti_input.rs21 float RS_KERNEL sum2(float in0, float in1, uint32_t x) {
22 return in0 + in1;
/frameworks/compile/slang/tests/P_reduce_general_input/
H A DScriptC_reduce_general_input.java.expect149 // in1 = "in"
150 public result_int reduce_my_half_0(short[] in1) {
151 // Verify that "in1" is non-null.
152 if (in1 == null) {
153 throw new RSIllegalArgumentException("Array \"in1\" is null!");
155 Allocation ain1 = Allocation.createSized(mRSLocal, __F16, in1.length);
157 ain1.copyFrom(in1);
182 // in1 = "in"
183 public result_int reduce_my_half_1(short[] in1) {
184 // Verify that "in1" i
[all...]
/frameworks/compile/slang/tests/P_reduce_general_accumulator/
H A DScriptC_reduce_general_accumulator.java.expect81 // in1 = "val"
82 public result_int reduce_my_half(int[] in1) {
83 // Verify that "in1" is non-null.
84 if (in1 == null) {
85 throw new RSIllegalArgumentException("Array \"in1\" is null!");
87 Allocation ain1 = Allocation.createSized(mRSLocal, __I32, in1.length);
89 ain1.copyFrom(in1);
114 // in1 = "val"
115 public result_int reduce_my_half2(int[] in1) {
116 // Verify that "in1" i
[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)
51 rsForEach(kernel_1, out, in1);
56 rsForEach(kernel_2, out, in1, in2);
/frameworks/compile/slang/tests/P_reduce_general_inputs/
H A DScriptC_reduce_general_inputs.java.expect121 // in1 = "a"
123 public result_int reduce_my_half_half_0(short[] in1, short[] in2) {
124 // Verify that "in1" is non-null.
125 if (in1 == null) {
126 throw new RSIllegalArgumentException("Array \"in1\" is null!");
128 Allocation ain1 = Allocation.createSized(mRSLocal, __F16, in1.length);
130 ain1.copyFrom(in1);
136 if (in1.length != in2.length) {
137 throw new RSRuntimeException("Array length mismatch between parameters \"in1\" and \"in2\"!");
185 // in1
[all...]
/frameworks/compile/slang/tests/P_reduce_general_examples/
H A DScriptC_reduce_general_examples.java.expect202 // in1 = "val"
203 public result_int reduce_addint(int[] in1) {
204 // Verify that "in1" is non-null.
205 if (in1 == null) {
206 throw new RSIllegalArgumentException("Array \"in1\" is null!");
208 Allocation ain1 = Allocation.createSized(mRSLocal, __I32, in1.length);
210 ain1.copyFrom(in1);
235 // in1 = "val"
236 public result_int reduce_mpyint(int[] in1) {
237 // Verify that "in1" i
[all...]
/frameworks/compile/slang/tests/P_reduce_general_examples_backward/
H A DScriptC_reduce_general_examples_backward.java.expect202 // in1 = "val"
203 public result_int reduce_addint(int[] in1) {
204 // Verify that "in1" is non-null.
205 if (in1 == null) {
206 throw new RSIllegalArgumentException("Array \"in1\" is null!");
208 Allocation ain1 = Allocation.createSized(mRSLocal, __I32, in1.length);
210 ain1.copyFrom(in1);
235 // in1 = "val"
236 public result_int reduce_mpyint(int[] in1) {
237 // Verify that "in1" i
[all...]
/frameworks/compile/slang/tests/P_reduce_general_examples_explicit/
H A DScriptC_reduce_general_examples_explicit.java.expect164 // in1 = "val"
165 public result_int reduce_addint_init(int[] in1) {
166 // Verify that "in1" is non-null.
167 if (in1 == null) {
168 throw new RSIllegalArgumentException("Array \"in1\" is null!");
170 Allocation ain1 = Allocation.createSized(mRSLocal, __I32, in1.length);
172 ain1.copyFrom(in1);
197 // in1 = "val"
198 public result_int reduce_addint_comb(int[] in1) {
199 // Verify that "in1" i
[all...]
/frameworks/compile/slang/tests/P_reduce_general_duplicate_array/
H A DScriptC_reduce_general_duplicate_array.java.expect81 // in1 = "val"
82 public resultArray4_int reduce_sumDec(int[] in1) {
83 // Verify that "in1" is non-null.
84 if (in1 == null) {
85 throw new RSIllegalArgumentException("Array \"in1\" is null!");
87 Allocation ain1 = Allocation.createSized(mRSLocal, __I32, in1.length);
89 ain1.copyFrom(in1);
114 // in1 = "val"
115 public resultArray4_int reduce_sumInc(int[] in1) {
116 // Verify that "in1" i
[all...]
/frameworks/compile/slang/tests/P_reduce_general_examples_halter/
H A DScriptC_reduce_general_examples_halter.java.expect119 // in1 = "inVal"
120 public result_int reduce_fz(int[] in1) {
121 // Verify that "in1" is non-null.
122 if (in1 == null) {
123 throw new RSIllegalArgumentException("Array \"in1\" is null!");
125 Allocation ain1 = Allocation.createSized(mRSLocal, __I32, in1.length);
127 ain1.copyFrom(in1);
152 // in1 = "inVal"
153 public result_int2 reduce_fz2(int[] in1) {
154 // Verify that "in1" i
[all...]
/frameworks/compile/slang/tests/P_reduce_general_result/
H A DScriptC_reduce_general_result.java.expect2716 // in1 = "val"
2717 public result_half reduce_my_half(short[] in1) {
2718 // Verify that "in1" is non-null.
2719 if (in1 == null) {
2720 throw new RSIllegalArgumentException("Array \"in1\" is null!");
2722 Allocation ain1 = Allocation.createSized(mRSLocal, __F16, in1.length);
2724 ain1.copyFrom(in1);
2749 // in1 = "val", flattened 2-vectors
2750 public result_half2 reduce_my_half2(short[] in1) {
2751 // Verify that "in1" i
[all...]
/frameworks/rs/tests/lldb/java/SingleSource/src/com/android/rs/singlesource/
H A DMainActivity.java52 float [] in1 = new float[]{ 1.f, 2.f, 3.f, 4.f };
53 mAllocIn1.copyFrom(in1);
/frameworks/rs/
H A DrsCppUtils.h103 T rsMin(T in1, T in2) argument
105 if (in1 > in2) {
108 return in1;
112 T rsMax(T in1, T in2) { argument
113 if (in1 < in2) {
116 return in1;
/frameworks/base/tools/aapt/tests/
H A DPseudolocales_test.cpp36 static void compound_helper(const char* in1, const char* in2, const char *in3, argument
40 pseudo.text(String16(String8(in1))) + \
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsics_x86.cpp762 __m128i in0, in1, out0, out1; local
770 in1 = _mm_loadu_si128((const __m128i *)src + 1);
790 ins = _mm_unpacklo_epi8(in1, _mm_setzero_si128());
798 ins = _mm_unpackhi_epi8(in1, _mm_setzero_si128());
818 __m128i in0, in1, out0, out1; local
826 in1 = _mm_loadu_si128((const __m128i *)src + 1);
850 t2 = _mm_unpacklo_epi8(in1, _mm_setzero_si128());
858 t3 = _mm_unpackhi_epi8(in1, _mm_setzero_si128());
875 __m128i in0, in1, out0, out1; local
881 in1
925 __m128i in0, in1, out0, out1; local
975 __m128i in0, in1, out0, out1; local
1027 __m128i in0, in1, out0, out1; local
1080 __m128i in0, in1, out0, out1; local
1151 __m128i in0, in1, out0, out1; local
1220 __m128i in0, in1, out0, out1; local
1241 __m128i in0, in1, out0, out1; local
1278 __m128i in0, in1, out0, out1; local
1299 __m128i in0, in1, out0, out1; local
[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/av/media/libstagefright/codecs/amrwbenc/src/
H A Dwb_vad.c83 Word16 * in1, /* i/o : input values; output high-pass part */
93 temp0 = vo_sub(*in1, vo_mult(COEFF5_2, data[1]));
98 *in1 = extract_h((vo_L_sub(temp1, temp2) << 15));
111 Word16 * in1, /* i/o : input values; output high-pass part */
117 temp1 = vo_sub(*in1, vo_mult(COEFF3, *data));
121 *in1 = extract_h((vo_L_sub(*in0, temp2) << 15));
81 filter5( Word16 * in0, Word16 * in1, Word16 data[] ) argument
109 filter3( Word16 * in0, Word16 * in1, Word16 * data ) argument
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dvad1.cpp237 in1 -- array of type Word16 -- input values; output high-pass part
242 in1 -- array of type Word16 -- input values; output high-pass part
298 Word16 *in1, /* i/o : input values; output high-pass part */
315 temp0 = sub(*in1, temp0, pOverflow);
326 *in1 = shr(temp0, 1, pOverflow);
341 in1 -- array of type Word16 -- input values; output high-pass part
346 in1 -- array of type Word16 -- input values; output high-pass part
403 Word16 *in1, /* i/o : input values; output high-pass part */
412 temp1 = sub(*in1, temp1, pOverflow);
421 *in1
297 filter5(Word16 *in0, Word16 *in1, Word16 data[], Flag *pOverflow ) argument
401 filter3( Word16 *in0, Word16 *in1, Word16 *data, Flag *pOverflow ) argument
[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);
952 for (int i = 0; i < in1.length; ++i) {
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 2817 milliseconds