HomeSort by relevance Sort by last modified time
    Searched defs:in0 (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
x86SP_FFT_CToC_FC32_Fwd_Radix2_fs.c 22 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];
x86SP_FFT_CToC_FC32_Inv_Radix2_fs.c 23 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];
x86SP_FFT_CToC_FC32_Fwd_Radix2_ls.c 25 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;
x86SP_FFT_CToC_FC32_Fwd_Radix2_ms.c 31 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;
x86SP_FFT_CToC_FC32_Inv_Radix2_ls.c 25 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;
x86SP_FFT_CToC_FC32_Inv_Radix2_ms.c 31 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;
x86SP_FFT_CToC_FC32_Inv_Radix4_fs.c 23 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];
x86SP_FFT_CToC_FC32_Fwd_Radix4_fs_sse.c 34 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);
x86SP_FFT_CToC_FC32_Inv_Radix4_fs_sse.c 33 const OMX_F32 *in0 = in + i; local
34 const OMX_F32 *in1 = in0 + n_by_4;
42 VC_LOAD_SPLIT(&v_t0, in0, n);
x86SP_FFT_CToC_FC32_Fwd_Radix4_ls.c 36 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;
x86SP_FFT_CToC_FC32_Fwd_Radix4_ls_sse.c 31 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);
x86SP_FFT_CToC_FC32_Fwd_Radix4_ms.c 36 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 + set_count
    [all...]
x86SP_FFT_CToC_FC32_Inv_Radix4_ls.c 36 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;
x86SP_FFT_CToC_FC32_Inv_Radix4_ls_sse.c 31 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);
x86SP_FFT_CToC_FC32_Inv_Radix4_ms.c 36 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 + set_count
    [all...]
x86SP_FFT_CToC_FC32_Fwd_Radix4_ms_sse.c 76 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 = in + set local
182 const OMX_F32 *in0 = in + set + grp * sub_num; local
    [all...]
x86SP_FFT_CToC_FC32_Inv_Radix4_ms_sse.c 76 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 = in + set local
182 const OMX_F32 *in0 = in + set + grp * sub_num; local
    [all...]
  /external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
synthesis-dct8.c 92 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 - in7
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
dtfmtrtts.cpp 403 UBool in0; local
408 else if((in0=fmt->getTimeZone().inDaylightTime(d[0], status)) && ! failure(status, "gettingDaylightTime") &&
412 else if (!in0 &&
  /external/deqp/modules/gles3/functional/
es3fShaderPackingFunctionTests.cpp 151 m_spec.inputs.push_back(Symbol("in0", glu::VarType(glu::TYPE_FLOAT_VEC2, precision)));
154 m_spec.source = "out0 = packSnorm2x16(in0);";
254 m_spec.inputs.push_back(Symbol("in0", glu::VarType(glu::TYPE_UINT, glu::PRECISION_HIGHP)));
257 m_spec.source = "out0 = unpackSnorm2x16(in0);";
297 const deInt16 in0 = (deInt16)(deUint16)(inputs[valNdx] & 0xffff); local
299 const float ref0 = de::clamp(float(in0) / 32767.f, -1.0f, 1.0f);
342 m_spec.inputs.push_back(Symbol("in0", glu::VarType(glu::TYPE_FLOAT_VEC2, precision)));
345 m_spec.source = "out0 = packUnorm2x16(in0);";
445 m_spec.inputs.push_back(Symbol("in0", glu::VarType(glu::TYPE_UINT, glu::PRECISION_HIGHP)));
448 m_spec.source = "out0 = unpackUnorm2x16(in0);";
488 const deUint16 in0 = (deUint16)(inputs[valNdx] & 0xffff); local
699 const deUint16 in0 = (deUint16)(inputs[valNdx] & 0xffff); local
    [all...]
es3fShaderPrecisionTests.cpp 99 op << "\t" << precName << " " << typeName << " in0 = " << (isVertexCase ? "a_" : "v_") << "in0;\n"
156 op << "\t" << precName << " " << typeName << " in0 = " << (isVertexCase ? "a_" : "v_") << "in0;\n"
180 typedef double (*EvalFunc) (double in0, double in1);
190 bool compare (float in0, float in1, double reference, float result)
307 bool ShaderFloatPrecisionCase::compare (float in0, float in1, double reference, float result)
320 const int in0Exp = tcu::Float32(in0).exponent();
386 const float in0 = m_rnd.getFloat(m_rangeA.x(), m_rangeA.y()); local
388 const double refD = m_evalFunc((double)in0, (double)in1)
607 int in0 = extendTo32Bit(((isMaxRangeA ? (int)m_rnd.getUint32() : m_rnd.getInt(m_rangeA.x(), m_rangeA.y())) & mask), m_bits); local
801 deUint32 in0 = (isMaxRangeA ? m_rnd.getUint32() : (m_rangeA.x() + m_rnd.getUint32()%(m_rangeA.y()-m_rangeA.x()+1))) & mask; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
dtfmtrtts.cpp 401 UBool in0; local
406 else if((in0=fmt->getTimeZone().inDaylightTime(d[0], status)) && ! failure(status, "gettingDaylightTime") &&
410 else if (!in0 &&
  /external/linux-tools-perf/perf-3.12.0/arch/ia64/lib/
memcpy_mck.S 5 * 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,r30 // setup argument
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderPackingFunctionTests.cpp 155 m_spec.inputs.push_back(Symbol("in0", glu::VarType(glu::TYPE_FLOAT_VEC2, precision)));
158 m_spec.source = "out0 = packSnorm2x16(in0);";
258 m_spec.inputs.push_back(Symbol("in0", glu::VarType(glu::TYPE_UINT, glu::PRECISION_HIGHP)));
261 m_spec.source = "out0 = unpackSnorm2x16(in0);";
301 const deInt16 in0 = (deInt16)(deUint16)(inputs[valNdx] & 0xffff); local
303 const float ref0 = de::clamp(float(in0) / 32767.f, -1.0f, 1.0f);
346 m_spec.inputs.push_back(Symbol("in0", glu::VarType(glu::TYPE_FLOAT_VEC2, precision)));
349 m_spec.source = "out0 = packUnorm2x16(in0);";
449 m_spec.inputs.push_back(Symbol("in0", glu::VarType(glu::TYPE_UINT, glu::PRECISION_HIGHP)));
452 m_spec.source = "out0 = unpackUnorm2x16(in0);";
492 const deUint16 in0 = (deUint16)(inputs[valNdx] & 0xffff); local
703 const deUint16 in0 = (deUint16)(inputs[valNdx] & 0xffff); local
909 const deInt8 in0 = (deInt8)(deUint8)(inputs[valNdx] & 0xff); local
1118 const deUint8 in0 = (deUint8)(inputs[valNdx] & 0xff); local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
vp9_idct_intrin_ssse3.c 365 static void idct16_sse2(__m128i *in0, __m128i *in1, int round) {
366 array_transpose_16x16(in0, in1);
367 idct16_8col(in0, round);
373 __m128i in0[16], in1[16]; local
375 load_buffer_8x16(input, in0);
379 idct16_sse2(in0, in1, 0);
380 idct16_sse2(in0, in1, 1);
382 write_buffer_8x16(dest, in0, stride);

Completed in 461 milliseconds

1 2