Searched defs:in0 (Results 1 - 25 of 55) sorted by relevance

123

/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix2_fs.c22 const OMX_F32 *in0 = in + i; local
23 const OMX_F32 *in1 = in0 + n;
26 // CADD out0, in0, in1
27 out0[0] = in0[0] + in1[0];
28 out0[n] = in0[1] + in1[1];
30 // CSUB out1, in0, in1
31 out1[0] = in0[0] - in1[0];
32 out1[n] = in0[1] - in1[1];
H A Dx86SP_FFT_CToC_FC32_Inv_Radix2_fs.c23 const OMX_F32 *in0 = in + i; local
24 const OMX_F32 *in1 = in0 + n_by_2;
27 // CADD out0, in0, in1
28 out0[0] = in0[0] + in1[0];
29 out0[n] = in0[n] + in1[n];
31 // CSUB out1, in0, in1
32 out1[0] = in0[0] - in1[0];
33 out1[n] = in0[n] - in1[n];
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix2_ls.c25 const OMX_F32 *in0 = in + i; local
26 const OMX_F32 *in1 = in0 + 1;
33 // CADD out0, in0, t
34 out0[0] = in0[0] + t.Re;
35 out0[n] = in0[n] + t.Im;
37 // CSUB out1, in0, t
38 out1[0] = in0[0] - t.Re;
39 out1[n] = in0[n] - t.Im;
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix2_ms.c31 const OMX_F32 *in0 = in + set + grp * sub_num; local
32 const OMX_F32 *in1 = in0 + set_count;
39 // CADD out0, in0, t
40 out0[0] = in0[0] + t.Re;
41 out0[n] = in0[n] + t.Im;
43 // CSUB out1, in0, t
44 out1[0] = in0[0] - t.Re;
45 out1[n] = in0[n] - t.Im;
H A Dx86SP_FFT_CToC_FC32_Inv_Radix2_ls.c25 const OMX_F32 *in0 = in + i; local
26 const OMX_F32 *in1 = in0 + 1;
33 // CADD out0, in0, t
34 out0[0] = in0[0] + t.Re;
35 out0[n] = in0[n] + t.Im;
37 // CSUB out1, in0, t
38 out1[0] = in0[0] - t.Re;
39 out1[n] = in0[n] - t.Im;
H A Dx86SP_FFT_CToC_FC32_Inv_Radix2_ms.c31 const OMX_F32 *in0 = in + set + grp * sub_num; local
32 const OMX_F32 *in1 = in0 + set_count;
39 // CADD out0, in0, t
40 out0[0] = in0[0] + t.Re;
41 out0[n] = in0[n] + t.Im;
43 // CSUB out1, in0, t
44 out1[0] = in0[0] - t.Re;
45 out1[n] = in0[n] - t.Im;
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_fs.c23 const OMX_F32 *in0 = in + i; local
24 const OMX_F32 *in1 = in0 + n_by_4;
36 // CADD t0, in0, in2
37 t0.Re = in0[0] + in2[0];
38 t0.Im = in0[n] + in2[n];
40 // CSUB t1, in0, in2
41 t1.Re = in0[0] - in2[0];
42 t1.Im = in0[n] - in2[n];
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_fs_sse.c34 const OMX_F32 *in0 = in + i; local
35 const OMX_F32 *in1 = in0 + n_by_2;
43 VC_LOAD_SHUFFLE(&(v_t0.real), &(v_t0.imag), in0);
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_ls.c36 const OMX_F32 *in0 = in + (i << 1); local
37 const OMX_F32 *in1 = in0 + 1;
56 // CADD t0, in0, tt2
57 t0.Re = in0[0] + tt2.Re;
58 t0.Im = in0[n] + tt2.Im;
60 // CSUB t1, in0, tt2
61 t1.Re = in0[0] - tt2.Re;
62 t1.Im = in0[n] - tt2.Im;
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_fs_sse.c33 const OMX_F32 *in0 = in + i; local
34 const OMX_F32 *in1 = in0 + n_by_4;
42 VC_LOAD_SPLIT(&v_t0, in0, n);
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_ls.c36 const OMX_F32 *in0 = in + (i << 1); local
37 const OMX_F32 *in1 = in0 + 1;
56 // CADD t0, in0, tt2
57 t0.Re = in0[0] + tt2.Re;
58 t0.Im = in0[n] + tt2.Im;
60 // CSUB t1, in0, tt2
61 t1.Re = in0[0] - tt2.Re;
62 t1.Im = in0[n] - tt2.Im;
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_ls_sse.c31 const OMX_F32 *in0 = in + (i << 1); local
32 const OMX_F32 *in1 = in0 + 4;
70 VC_LOAD_MATRIX_TRANSPOSE(&v_t0, &v_t1, &v_t2, &v_t3, in0, in1, in2, in3, n);
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_ms.c36 const OMX_F32 *in0 = in + set; local
37 const OMX_F32 *in1 = in0 + set_count;
44 // CADD t0, in0, in2
45 t0.Re = in0[0] + in2[0];
46 t0.Im = in0[n] + in2[n];
48 // CSUB t1, in0, in2
49 t1.Re = in0[0] - in2[0];
50 t1.Im = in0[n] - in2[n];
94 const OMX_F32 *in0 = in + set + grp * sub_num; local
95 const OMX_F32 *in1 = in0
[all...]
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_ls_sse.c31 const OMX_F32 *in0 = in + (i << 1); local
32 const OMX_F32 *in1 = in0 + 4;
70 VC_LOAD_MATRIX_TRANSPOSE(&v_t0, &v_t1, &v_t2, &v_t3, in0, in1, in2, in3, n);
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_ms.c36 const OMX_F32 *in0 = in + set; local
37 const OMX_F32 *in1 = in0 + set_count;
44 // CADD t0, in0, in2
45 t0.Re = in0[0] + in2[0];
46 t0.Im = in0[n] + in2[n];
48 // CSUB t1, in0, in2
49 t1.Re = in0[0] - in2[0];
50 t1.Im = in0[n] - in2[n];
94 const OMX_F32 *in0 = in + set + grp * sub_num; local
95 const OMX_F32 *in1 = in0
[all...]
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_ms_sse.c76 const OMX_F32 *in0 = in + (i << 1); local
77 xmm0 = _mm_load_ps(in0);
78 xmm1 = _mm_load_ps(in0 + 4);
79 xmm2 = _mm_load_ps(in0 + 8);
80 xmm3 = _mm_load_ps(in0 + 12);
86 xmm4 = _mm_load_ps(in0 + n);
87 xmm5 = _mm_load_ps(in0 + n + 4);
88 xmm6 = _mm_load_ps(in0 + n + 8);
89 xmm7 = _mm_load_ps(in0 + n + 12);
133 const OMX_F32 * in0 local
182 const OMX_F32 *in0 = in + set + grp * sub_num; local
[all...]
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_ms_sse.c76 const OMX_F32 *in0 = in + (i << 1); local
77 xmm0 = _mm_load_ps(in0);
78 xmm1 = _mm_load_ps(in0 + 4);
79 xmm2 = _mm_load_ps(in0 + 8);
80 xmm3 = _mm_load_ps(in0 + 12);
86 xmm4 = _mm_load_ps(in0 + n);
87 xmm5 = _mm_load_ps(in0 + n + 4);
88 xmm6 = _mm_load_ps(in0 + n + 8);
89 xmm7 = _mm_load_ps(in0 + n + 12);
133 const OMX_F32 * in0 local
182 const OMX_F32 *in0 = in + set + grp * sub_num; local
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLSL_impl.h25 inline Self GrGLSLExpr<Self>::Mul(T0 in0, T1 in1) { argument
26 if (in0.isZeros() || in1.isZeros()) {
29 if (in0.isOnes()) {
33 return Self::VectorCast(in0);
35 return Self("(%s * %s)", in0.c_str(), in1.c_str());
40 inline Self GrGLSLExpr<Self>::Add(T0 in0, T1 in1) { argument
42 return Self::VectorCast(in0);
44 if (in0.isZeros()) {
47 if (in0.isOnes() && in1.isOnes()) {
50 return Self("(%s + %s)", in0
55 Sub(T0 in0, T1 in1) argument
99 operator *(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) argument
103 operator +(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) argument
107 operator -(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) argument
139 operator *(const GrGLSLExpr1& in0, const GrGLSLExpr4& in1) argument
143 operator +(const GrGLSLExpr1& in0, const GrGLSLExpr4& in1) argument
147 operator -(const GrGLSLExpr1& in0, const GrGLSLExpr4& in1) argument
151 operator *(const GrGLSLExpr4& in0, const GrGLSLExpr1& in1) argument
155 operator +(const GrGLSLExpr4& in0, const GrGLSLExpr1& in1) argument
159 operator -(const GrGLSLExpr4& in0, const GrGLSLExpr1& in1) argument
163 operator *(const GrGLSLExpr4& in0, const GrGLSLExpr4& in1) argument
167 operator +(const GrGLSLExpr4& in0, const GrGLSLExpr4& in1) argument
171 operator -(const GrGLSLExpr4& in0, const GrGLSLExpr4& in1) argument
[all...]
H A DGrGLSL.h150 GrGLSLExpr(const char format[], const char in0[]) argument
152 fExpr.appendf(format, in0);
156 GrGLSLExpr(const char format[], const char in0[], const char in1[]) argument
158 fExpr.appendf(format, in0, in1);
174 * vecN(in0.x * in1.x, ...) if dim(T0) == dim(T1) (component-wise)
175 * vecN(in0.x * in1, ...) if dim(T1) == 1 (vector by scalar)
176 * vecN(in0 * in1.x, ...) if dim(T0) == 1 (scalar by vector)
179 static Self Mul(T0 in0, T1 in1);
183 * vecN(in0.x + in1.x, ...) or vecN(in0
235 GrGLSLExpr1(const char format[], const char in0[]) argument
238 GrGLSLExpr1(const char format[], const char in0[], const char in1[]) argument
281 GrGLSLExpr4(const char format[], const char in0[]) argument
284 GrGLSLExpr4(const char format[], const char in0[], const char in1[]) argument
[all...]
/external/skia/src/gpu/gl/
H A DGrGLSL_impl.h25 inline Self GrGLSLExpr<Self>::Mul(T0 in0, T1 in1) { argument
26 if (in0.isZeros() || in1.isZeros()) {
29 if (in0.isOnes()) {
33 return Self::VectorCast(in0);
35 return Self("(%s * %s)", in0.c_str(), in1.c_str());
40 inline Self GrGLSLExpr<Self>::Add(T0 in0, T1 in1) { argument
42 return Self::VectorCast(in0);
44 if (in0.isZeros()) {
47 if (in0.isOnes() && in1.isOnes()) {
50 return Self("(%s + %s)", in0
55 Sub(T0 in0, T1 in1) argument
99 operator *(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) argument
103 operator +(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) argument
107 operator -(const GrGLSLExpr1& in0, const GrGLSLExpr1& in1) argument
139 operator *(const GrGLSLExpr1& in0, const GrGLSLExpr4& in1) argument
143 operator +(const GrGLSLExpr1& in0, const GrGLSLExpr4& in1) argument
147 operator -(const GrGLSLExpr1& in0, const GrGLSLExpr4& in1) argument
151 operator *(const GrGLSLExpr4& in0, const GrGLSLExpr1& in1) argument
155 operator +(const GrGLSLExpr4& in0, const GrGLSLExpr1& in1) argument
159 operator -(const GrGLSLExpr4& in0, const GrGLSLExpr1& in1) argument
163 operator *(const GrGLSLExpr4& in0, const GrGLSLExpr4& in1) argument
167 operator +(const GrGLSLExpr4& in0, const GrGLSLExpr4& in1) argument
171 operator -(const GrGLSLExpr4& in0, const GrGLSLExpr4& in1) argument
[all...]
H A DGrGLSL.h150 GrGLSLExpr(const char format[], const char in0[]) argument
152 fExpr.appendf(format, in0);
156 GrGLSLExpr(const char format[], const char in0[], const char in1[]) argument
158 fExpr.appendf(format, in0, in1);
174 * vecN(in0.x * in1.x, ...) if dim(T0) == dim(T1) (component-wise)
175 * vecN(in0.x * in1, ...) if dim(T1) == 1 (vector by scalar)
176 * vecN(in0 * in1.x, ...) if dim(T0) == 1 (scalar by vector)
179 static Self Mul(T0 in0, T1 in1);
183 * vecN(in0.x + in1.x, ...) or vecN(in0
235 GrGLSLExpr1(const char format[], const char in0[]) argument
238 GrGLSLExpr1(const char format[], const char in0[], const char in1[]) argument
281 GrGLSLExpr4(const char format[], const char in0[]) argument
284 GrGLSLExpr4(const char format[], const char in0[], const char in1[]) argument
[all...]
/external/chromium_org/third_party/skia/tests/
H A DLListTest.cpp35 bool in0, bool in1, bool in2, bool in3,
42 REPORTER_ASSERT(reporter, in0 == list.isInList(&elements[0]));
31 check_list(const SkTInternalLList<ListElement>& list, skiatest::Reporter* reporter, bool empty, int numElements, bool in0, bool in1, bool in2, bool in3, ListElement elements[4]) argument
/external/skia/tests/
H A DLListTest.cpp35 bool in0, bool in1, bool in2, bool in3,
42 REPORTER_ASSERT(reporter, in0 == list.isInList(&elements[0]));
31 check_list(const SkTInternalLList<ListElement>& list, skiatest::Reporter* reporter, bool empty, int numElements, bool in0, bool in1, bool in2, bool in3, ListElement elements[4]) argument
/external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
H A Dsynthesis-dct8.c92 double in0,in1,in2,in3; local
95 in0 = FLOAT_SCALE(in[0], DCTII_8_SHIFT_IN); OI_ASSERT(VALID_INT32(in0));
104 L00 = (in0 + in7); OI_ASSERT(VALID_INT32(L00));
112 L07 = (in0 - in7); OI_ASSERT(VALID_INT32(L07));
217 OI_INT32 in0,in1,in2,in3; local
221 in0 = SCALE(in[0], DCTII_8_SHIFT_IN);
230 in0 = in[0];
240 L00 = in0 + in7;
248 L07 = in0
[all...]
/external/linux-tools-perf/perf-3.12.0/arch/ia64/lib/
H A Dmemcpy_mck.S5 * in0: destination address
69 #define in0 r32 define
74 and r28=0x7,in0
77 mov retval=in0
84 and r28=0x7,in0
87 mov saved_in0=in0 // save dest pointer
99 add dst0=0,in0
100 add dst1=1,in0 // dest odd index
123 add dst_pre_mem=0,in0 // prefetch dest pointer
493 add dst0=in0,r3
[all...]

Completed in 292 milliseconds

123