Searched defs:out0 (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix2_fs.c19 OMX_F32 *out0 = out; local
24 OMX_F32 *out1 = out0 + (n >> 1);
26 // CADD out0, in0, in1
27 out0[0] = in0[0] + in1[0];
28 out0[n] = in0[1] + in1[1];
34 out0 += 1;
H A Dx86SP_FFT_CToC_FC32_Inv_Radix2_fs.c20 OMX_F32 *out0 = out; local
25 OMX_F32 *out1 = out0 + n_by_2;
27 // CADD out0, in0, in1
28 out0[0] = in0[0] + in1[0];
29 out0[n] = in0[n] + in1[n];
35 out0 += 1;
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix2_ls.c20 OMX_F32 *out0 = out; local
27 OMX_F32 *out1 = out0 + (n >> 1);
33 // CADD out0, in0, t
34 out0[0] = in0[0] + t.Re;
35 out0[n] = in0[n] + t.Im;
41 out0 += 1;
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix2_ls_sse.c20 OMX_F32 *out0 = out; local
47 OMX_F32 *out1 = out0 + (n >> 1);
52 VC_ADD_STORE_SPLIT(out0, &v_t0, &v_temp, n);
54 out0 += 4;
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix2_ms.c22 OMX_F32 *out0 = out; local
33 OMX_F32 *out1 = out0 + (n >> 1);
39 // CADD out0, in0, t
40 out0[0] = in0[0] + t.Re;
41 out0[n] = in0[n] + t.Im;
47 out0 += 1;
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_fs.c30 OMX_F32 *out0 = out + i; local
31 OMX_F32 *out1 = out0 + n_by_4;
40 // CADD t0, out0, out2
41 t0.Re = out0[0] + out2[0];
42 t0.Im = out0[n] + out2[n];
44 // CSUB t1, out0, out2
45 t1.Re = out0[0] - out2[0];
46 t1.Im = out0[n] - out2[n];
56 // CADD out0, t0, t2
57 out0[
[all...]
H A Dx86SP_FFT_CToC_FC32_Inv_Radix2_ls.c20 OMX_F32 *out0 = out; local
27 OMX_F32 *out1 = out0 + (n >> 1);
33 // CADD out0, in0, t
34 out0[0] = in0[0] + t.Re;
35 out0[n] = in0[n] + t.Im;
41 out0 += 1;
H A Dx86SP_FFT_CToC_FC32_Inv_Radix2_ls_sse.c20 OMX_F32 *out0 =out; local
43 OMX_F32 *out1 = out0 + (n >> 1);
48 VC_ADD_STORE_SPLIT(out0, &v_t0, &v_temp, n);
50 out0 += 4;
H A Dx86SP_FFT_CToC_FC32_Inv_Radix2_ms.c22 OMX_F32 *out0 = out; local
33 OMX_F32 *out1 = out0 + (n >> 1);
39 // CADD out0, in0, t
40 out0[0] = in0[0] + t.Re;
41 out0[n] = in0[n] + t.Im;
47 out0 += 1;
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_fs.c20 OMX_F32 *out0 = out; local
27 OMX_F32 *out1 = out0 + n_by_4;
52 // CADD out0, t0, t2
53 out0[0] = t0.Re + t2.Re;
54 out0[n] = t0.Im + t2.Im;
68 out0 += 1;
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_fs_sse.c22 OMX_F32 *out0 = out; local
39 OMX_F32 *out1 = out0 + n_by_4;
51 RADIX4_FWD_BUTTERFLY_STORE(out0, out1, out2, out3,
54 out0 += 4;
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_ls.c23 OMX_F32 *out0 = out; local
40 OMX_F32 *out1 = out0 + n_by_4;
72 // CADD out0, t0, t2
73 out0[0] = t0.Re + t2.Re;
74 out0[n] = t0.Im + t2.Im;
88 out0 += 1;
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_fs_sse.c21 OMX_F32 *out0 = out; local
38 OMX_F32 *out1 = out0 + n_by_4;
50 RADIX4_INV_BUTTERFLY_STORE(out0, out1, out2, out3,
53 out0 += 4;
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_ls.c23 OMX_F32 *out0 = out; local
40 OMX_F32 *out1 = out0 + n_by_4;
72 // CADD out0, t0, t2
73 out0[0] = t0.Re + t2.Re;
74 out0[n] = t0.Im + t2.Im;
88 out0 += 1;
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_ls_sse.c25 OMX_F32 *out0 = out; local
35 OMX_F32 *out1 = out0 + n_by_4;
76 RADIX4_FWD_BUTTERFLY_STORE(out0, out1, out2, out3,
79 out0 += 4;
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_ms.c27 OMX_F32 *out0 = out; local
40 OMX_F32 *out1 = out0 + n_by_4;
60 // CADD out0, t0, t2
61 out0[0] = t0.Re + t2.Re;
62 out0[n] = t0.Im + t2.Im;
76 out0 += 1;
98 OMX_F32 *out1 = out0 + n_by_4;
130 // CADD out0, t0, t2
131 out0[0] = t0.Re + t2.Re;
132 out0[
[all...]
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_ls_sse.c25 OMX_F32 *out0 = out; local
35 OMX_F32 *out1 = out0 + n_by_4;
76 RADIX4_INV_BUTTERFLY_STORE(out0, out1, out2, out3,
79 out0 += 4;
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_ms.c27 OMX_F32 *out0 = out; local
40 OMX_F32 *out1 = out0 + n_by_4;
60 // CADD out0, t0, t2
61 out0[0] = t0.Re + t2.Re;
62 out0[n] = t0.Im + t2.Im;
76 out0 += 1;
98 OMX_F32 *out1 = out0 + n_by_4;
130 // CADD out0, t0, t2
131 out0[0] = t0.Re + t2.Re;
132 out0[
[all...]
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_ms_sse.c26 OMX_F32 *out0 = out; local
95 OMX_F32 *out1 = out0 + n_by_4;
103 RADIX4_FWD_BUTTERFLY_STORE(out0, out1, out2, out3,
106 out0 += 4;
124 OMX_F32 *out0 = out; local
152 OMX_F32 *out1 = out0 + n_by_4;
159 RADIX4_FWD_BUTTERFLY_STORE(out0, out1, out2, out3,
162 out0 += 4;
201 OMX_F32 *out1 = out0 + n_by_4;
209 RADIX4_FWD_BUTTERFLY_STORE(out0, out
[all...]
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_ms_sse.c26 OMX_F32 *out0 = out; local
95 OMX_F32 *out1 = out0 + n_by_4;
103 RADIX4_INV_BUTTERFLY_STORE(out0, out1, out2, out3,
106 out0 += 4;
124 OMX_F32 *out0 = out; local
152 OMX_F32 *out1 = out0 + n_by_4;
159 RADIX4_INV_BUTTERFLY_STORE(out0, out1, out2, out3,
162 out0 += 4;
201 OMX_F32 *out1 = out0 + n_by_4;
209 RADIX4_INV_BUTTERFLY_STORE(out0, out
[all...]
H A Dx86SP_SSE_Math.h278 __m128 *out0,
283 *out0 = temp.real;
289 OMX_F32 *out0,
298 /* CADD out0, t0, t2 */
299 VC_ADD_STORE_SPLIT(out0, t0, t2, n);
313 OMX_F32 *out0,
322 /* CADD out0, t0, t2 */
323 VC_ADD_STORE_SPLIT(out0, t0, t2, n);
277 VC_LOAD_SHUFFLE( __m128 *out0, __m128 *out1, const OMX_F32 *in) argument
288 RADIX4_FWD_BUTTERFLY_STORE( OMX_F32 *out0, OMX_F32 *out1, OMX_F32 *out2, OMX_F32 *out3, VC *t0, VC *t1, VC *t2, VC *t3, OMX_INT n) argument
312 RADIX4_INV_BUTTERFLY_STORE( OMX_F32 *out0, OMX_F32 *out1, OMX_F32 *out2, OMX_F32 *out3, VC *t0, VC *t1, VC *t2, VC *t3, OMX_INT n) argument
/external/clang/test/CodeGen/
H A Dmult-alt-generic.c27 register int out0 = 0; local
30 //asm("foo %1, %2,%0" : "=r" (out0) : "o" (min1));
42 register int out0 = 0; local
45 asm("foo %1,%0" : "=r" (out0) : "<r" (in1));
47 asm("foo %1,%0" : "=r" (out0) : "r<" (in1));
53 register int out0 = 0; local
56 asm("foo %1,%0" : "=r" (out0) : ">r" (in1));
58 asm("foo %1,%0" : "=r" (out0) : "r>" (in1));
64 register int out0 = 0; local
67 asm("foo %1,%0" : "=r" (out0)
73 register int out0 = 0; local
81 register int out0 = 0; local
89 register double out0 = 0.0; local
97 register double out0 = 0.0; local
105 register int out0 = 0; local
112 register int out0 = 0; local
125 register int out0 = 0; local
144 register int out0 = 0; local
160 register int out0 = 0; local
175 register int out0 = 0; local
186 register int out0 = 0; local
197 register int out0 = 0; local
206 register int out0 = 0; local
214 register int out0 = 0; local
222 register double out0 = 0.0; local
230 register double out0 = 0.0; local
238 register int out0 = 0; local
245 register int out0 = 0; local
258 register int out0 = 0; local
277 register int out0 = 0; local
[all...]
/external/jpeg/
H A Djccolor.c319 static void copyquads(const UINT32 in[], UINT32 out0[], UINT32 out1[], UINT32 out2[], int col4) argument
326 *out0++ = PACK(B0(src0), B3(src0), B2(src1), B1(src2));
365 UINT32* out0 = (UINT32*)outptr0; local
368 copyquads(in, out0, out1, out2, col4);
/external/pixman/pixman/
H A Dpixman-arm-neon-asm.h1183 * returned in (out0, out1) registers pair. Requires one temporary
1187 .macro convert_four_0565_to_x888_packed in, out0, out1, tmp variable
1188 vshl.u16 out0, in, #5 /* G top 6 bits */
1191 vsri.u16 out0, out0, #6 /* G is ready in top bits */ variable
1194 vsri.u16 out0, tmp, #8 /* G & B is in place */
1195 vzip.u16 out0, out1 /* everything is in place */
/external/qemu/distrib/jpeg-6b/
H A Djccolor.c412 static void copyquads(const UINT32 in[], UINT32 out0[], UINT32 out1[], UINT32 out2[], int col4) argument
419 *out0++ = PACK(B0(src0), B3(src0), B2(src1), B1(src2));
458 UINT32* out0 = (UINT32*)outptr0; local
461 copyquads(in, out0, out1, out2, col4);

Completed in 1032 milliseconds

12