Searched refs:i4 (Results 1 - 25 of 33) sorted by relevance

12

/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
H A Dint4.rs25 int4 i4 = {u4.x, u4.y, u4.z, u4.w};
26 i4 *= gi4;
28 rsDebug("i4.x", i4.x);
29 rsDebug("i4.y", i4.y);
30 rsDebug("i4.z", i4.z);
31 rsDebug("i4.w", i4
[all...]
H A DUT_instance.java78 int i4[] = new int[1];
84 ai4.copyTo(i4);
90 assertEquals(4, i4[0]);
95 assertEquals(4, i4[0]);
H A Dforeach_multi.rs24 uint32_t i4;
66 retval.i4 = in0 + in1;
165 _RS_ASSERT(result->i4 == sum);
H A Dmath_fp16.rs27 static volatile int4 i4;
39 i4 = fn(h4);
51 h4 = fn(h4, i4);
57 h4 = fn(h4, (int4 *) &i4);
99 h4 = fn(h4, h4, (int4 *) &i4);
H A Dmath.rs29 volatile int4 i4;
217 f4 = fnc(f4, i4);
245 f4 = fnc(f4, (int4*) &i4);
252 f4 = fnc(f4, f4, (int4*) &i4);
259 i4 = fnc(f4);
/frameworks/ml/nn/runtime/test/generated/models/
H A Dconv_1_h3_w2_SAME.model.py2 i4 = Int32Bias("b4", 1) variable
10 model = model.Conv(i2, i0, i1, i4, i5, i6, i7).To(i3)
H A Dconv_1_h3_w2_VALID.model.py2 i4 = Int32Bias("b4", 2) variable
10 model = model.Conv(i2, i0, i1, i4, i5, i6, i7).To(i3)
H A Dconv_3_h3_w2_SAME.model.py2 i4 = Int32Bias("b4", 1) variable
10 model = model.Conv(i2, i0, i1, i4, i5, i6, i7).To(i3)
H A Dconv_3_h3_w2_VALID.model.py2 i4 = Int32Bias("b4", 2) variable
10 model = model.Conv(i2, i0, i1, i4, i5, i6, i7).To(i3)
H A Ddepthwise_conv.model.py2 i4 = Int32Bias("b4", 1) variable
11 model = model.DepthWiseConv(i2, i0, i1, i4, i5, i6, i7, i8).To(i3)
/frameworks/ml/nn/tools/test_generator/tests/P_conv/
H A Dconv_1_h3_w2_SAME.mod.py0 i4 = Int32Scalar("b4", 1)
10 model = model.Conv(i2, i0, i1, i4, i5, i6, i7).To(i3)
1 i4 = Int32Scalar("b4", 1) variable
/frameworks/ml/nn/tools/test_generator/tests/P_quantized_conv/
H A Dquantized.mod.py0 i4 = Int32Scalar("b4", 2)
10 model = model.Conv(i2, i0, i1, i4, i5, i6, i7).To(i3)
1 i4 = Int32Scalar("b4", 2) variable
/frameworks/ml/nn/tools/test_generator/tests/P_weird/
H A Dweird_add.mod.py9 i4 = Input("op4", "TENSOR_FLOAT32", "{2}") # another vector of 2 float32s variable
12 model = model.Operation("ADD", tmp2, i4, b0).To(o3)
19 i4: # input 4
/frameworks/ml/nn/tools/test_generator/tests/P_depthwise_conv/
H A Ddepthwise_conv.bin.mod.py2 i4 = Int32Scalar("b4", 1) variable
11 model = model.DepthWiseConv(i2, i0, i1, i4, i5, i6, i7, i8).To(i3)
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
H A Dresidu_asm_opt.s83 SMULTT r12, r5, r10 @i4(0) --- r12 = x[3] * a0
87 SMLABB r12, r5, r10, r12 @i4(1) --- r12 += x[2] * a1
90 SMLATT r12, r6, r2, r12 @i4(2) --- r12 += x[1] * a2
91 SMLABB r12, r6, r2, r12 @i4(3) --- r12 += x[0] * a3
98 SMLATT r12, r7, r2, r12 @i4(4) --- r12 += x[-1] * a4
103 SMLABB r12,r7, r2, r12 @ i4 (5)
109 SMLATT r12,r8, r2, r12 @ i4 (6)
113 SMLABB r12,r8, r2, r12 @ i4 (7)
119 SMLATT r12,r9, r2, r12 @ i4 (8)
123 SMLABB r12,r9, r2, r12 @ i4 (
[all...]
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
H A DUT_instance.java81 int i4[] = new int[1];
87 ai4.copyTo(i4);
93 assertEquals(4, i4[0]);
98 assertEquals(4, i4[0]);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
H A DUT_instance.java80 int i4[] = new int[1];
86 ai4.copyTo(i4);
92 assertEquals(4, i4[0]);
97 assertEquals(4, i4[0]);
/frameworks/rs/
H A DrsCppUtils.h174 static inline uint16_t rsBoxFilter565(uint16_t i1, uint16_t i2, uint16_t i3, uint16_t i4) { argument
175 uint32_t r = ((i1 & 0x1f) + (i2 & 0x1f) + (i3 & 0x1f) + (i4 & 0x1f));
176 uint32_t g = ((i1 >> 5) & 0x3f) + ((i2 >> 5) & 0x3f) + ((i3 >> 5) & 0x3f) + ((i4 >> 5) & 0x3f);
177 uint32_t b = ((i1 >> 11) + (i2 >> 11) + (i3 >> 11) + (i4 >> 11));
181 static inline uint32_t rsBoxFilter8888(uint32_t i1, uint32_t i2, uint32_t i3, uint32_t i4) { argument
182 uint32_t r = (i1 & 0xff) + (i2 & 0xff) + (i3 & 0xff) + (i4 & 0xff);
183 uint32_t g = ((i1 >> 8) & 0xff) + ((i2 >> 8) & 0xff) + ((i3 >> 8) & 0xff) + ((i4 >> 8) & 0xff);
184 uint32_t b = ((i1 >> 16) & 0xff) + ((i2 >> 16) & 0xff) + ((i3 >> 16) & 0xff) + ((i4 >> 16) & 0xff);
185 uint32_t a = ((i1 >> 24) & 0xff) + ((i2 >> 24) & 0xff) + ((i3 >> 24) & 0xff) + ((i4 >> 24) & 0xff);
H A DrsFont.cpp591 int32_t i4 = i * 4; local
593 indexPtr[i6 + 0] = i4 + 0;
594 indexPtr[i6 + 1] = i4 + 1;
595 indexPtr[i6 + 2] = i4 + 2;
597 indexPtr[i6 + 3] = i4 + 0;
598 indexPtr[i6 + 4] = i4 + 2;
599 indexPtr[i6 + 5] = i4 + 3;
/frameworks/rs/tests/java_api/RSUnitTests/supportlibonlysrc/com/android/rs/unittest/
H A Dapitest.rs65 volatile int4 i4;
264 i4 = rsGetElementAt_int4(aInt4, 0);
265 rsSetElementAt_int4(aInt4, i4, 0);
266 i4 = rsGetElementAt_int4(aInt4, 0, 0);
267 rsSetElementAt_int4(aInt4, i4, 0, 0);
268 i4 = rsGetElementAt_int4(aInt4, 0, 0, 0);
269 rsSetElementAt_int4(aInt4, i4, 0, 0, 0);
452 c4 = convert_char4(i4);
474 uc4 = convert_uchar4(i4);
496 s4 = convert_short4(i4);
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Ds10_8pf.cpp190 Word16 i0, i1, i2, i3, i4, i5, i6, i7, i8, i9;
296 // i4 and i5 loop:
319 for (i4 = ipos[4]; i4 < L_CODE; i4 += step)
321 ps1 = add (ps0, dn[i4]);
323 alp1 = L_mac (alp0, rr[i4][i4], _1_32);
324 alp1 = L_mac (alp1, rr[i0][i4], _1_16);
325 alp1 = L_mac (alp1, rr[i1][i4], _1_1
568 Word16 i0, i1, i2, i3, i4, i5, i6, i7, i9; local
[all...]
/frameworks/rs/tests/cpp_api/typecheck/
H A Dkernels.rs64 int4 i4;
/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV5E/
H A DR4R8First_v5.s108 add r7, r9, r3 @ i4 = (i0 + i2) >> 1@
176 add r11, r5, r9 @ buf[ 1] = i4 + t1@
179 sub r5, r5, r9 @ buf[ 9] = i4 - t1@
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dtransform.c113 int i4, i5, i6, i7; local
128 i4 = (i0 + i2) >> 1;
151 buf[ 1] = i4 + t1;
153 buf[ 9] = i4 - t1;
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java91 int i3, int i4, int i5, Rect rect, Rect rect2, Rect rect3, Rect rect4, Rect rect5,
90 relayout(IWindow iWindow, int i, LayoutParams layoutParams, int i2, int i3, int i4, int i5, Rect rect, Rect rect2, Rect rect3, Rect rect4, Rect rect5, Rect rect6, Rect rect7, MergedConfiguration mergedConfig, Surface surface) argument

Completed in 8830 milliseconds

12