Searched refs:in2 (Results 1 - 25 of 106) sorted by relevance

12345

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dinterpolate.h31 int16_t *in2, /* (i) second input vector */
H A Dinterpolate.c29 int16_t *in2, /* (i) second input vector */
37 Performs the operation out[i] = in[i]*coef + (1-coef)*in2[i] (with rounding)
43 (WEBRTC_SPL_MUL_16_16(coef, in1[i]) + WEBRTC_SPL_MUL_16_16(invcoef, in2[i]))+8192,
26 WebRtcIlbcfix_Interpolate( int16_t *out, int16_t *in1, int16_t *in2, int16_t coef, int16_t length) argument
/external/chromium_org/crypto/
H A Dcurve25519-donna.c68 /* Multiply two numbers: output = in2 * in
73 static void fproduct(limb *output, const limb *in2, const limb *in) { argument
74 output[0] = ((limb) ((s32) in2[0])) * ((s32) in[0]);
75 output[1] = ((limb) ((s32) in2[0])) * ((s32) in[1]) +
76 ((limb) ((s32) in2[1])) * ((s32) in[0]);
77 output[2] = 2 * ((limb) ((s32) in2[1])) * ((s32) in[1]) +
78 ((limb) ((s32) in2[0])) * ((s32) in[2]) +
79 ((limb) ((s32) in2[2])) * ((s32) in[0]);
80 output[3] = ((limb) ((s32) in2[1])) * ((s32) in[2]) +
81 ((limb) ((s32) in2[
236 fmul(limb *output, const limb *in, const limb *in2) argument
[all...]
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dvector_scaling_operations_mips.c28 int16_t *in2 = (int16_t*)in_vector2; local
39 "lh %[r1], 0(%[in2]) \n\t"
44 "addiu %[in2], %[in2], 2 \n\t"
48 [in2] "+r" (in2), [r0] "=&r" (r0), [r1] "=&r" (r1)
H A Dresample.c312 static void WebRtcSpl_DotProdIntToInt(const int32_t* in1, const int32_t* in2, argument
322 tmp2 += coef * in2[-0];
326 tmp2 += coef * in2[-1];
330 tmp2 += coef * in2[-2];
334 tmp2 += coef * in2[-3];
338 tmp2 += coef * in2[-4];
342 tmp2 += coef * in2[-5];
346 tmp2 += coef * in2[-6];
350 tmp2 += coef * in2[-7];
354 *out2 = tmp2 + coef * in2[
358 WebRtcSpl_DotProdIntToShort(const int32_t* in1, const int32_t* in2, const int16_t* coef_ptr, int16_t* out1, int16_t* out2) argument
[all...]
H A Dresample_fractional.c149 static void WebRtcSpl_ResampDotProduct(const int32_t *in1, const int32_t *in2, argument
159 tmp2 += coef * in2[-0];
163 tmp2 += coef * in2[-1];
167 tmp2 += coef * in2[-2];
171 tmp2 += coef * in2[-3];
175 tmp2 += coef * in2[-4];
179 tmp2 += coef * in2[-5];
183 tmp2 += coef * in2[-6];
187 tmp2 += coef * in2[-7];
191 *out2 = tmp2 + coef * in2[
[all...]
/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_fs.c25 const OMX_F32 *in2 = in1 + n_by_4; local
26 const OMX_F32 *in3 = in2 + 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_ls.c38 const OMX_F32 *in2 = in1 + 1; local
39 const OMX_F32 *in3 = in2 + 1;
48 // CMUL tt2, tw2, in2
49 tt2.Re = tw2[0] * in2[0] - tw2[n_mul_2] * in2[n];
50 tt2.Im = tw2[0] * in2[n] + tw2[n_mul_2] * in2[0];
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_ls.c38 const OMX_F32 *in2 = in1 + 1; local
39 const OMX_F32 *in3 = in2 + 1;
48 // CMUL tt2, Tw2, in2
49 tt2.Re = tw2[0] * in2[0] + tw2[n_mul_2] * in2[n];
50 tt2.Im = tw2[0] * in2[n] - tw2[n_mul_2] * in2[0];
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_fs_sse.c36 const OMX_F32 *in2 = in1 + n_by_2; local
37 const OMX_F32 *in3 = in2 + n_by_2;
45 VC_LOAD_SHUFFLE(&(v_t2.real), &(v_t2.imag), in2);
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_ms.c38 const OMX_F32 *in2 = in1 + set_count; local
39 const OMX_F32 *in3 = in2 + 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];
96 const OMX_F32 *in2 = in1 + set_count; local
97 const OMX_F32 *in3 = in2
[all...]
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_fs_sse.c35 const OMX_F32 *in2 = in1 + n_by_4; local
36 const OMX_F32 *in3 = in2 + n_by_4;
44 VC_LOAD_SPLIT(&v_t2, in2, n);
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_ms.c38 const OMX_F32 *in2 = in1 + set_count; local
39 const OMX_F32 *in3 = in2 + 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];
96 const OMX_F32 *in2 = in1 + set_count; local
97 const OMX_F32 *in3 = in2
[all...]
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_ls_sse.c33 const OMX_F32 *in2 = in1 + 4; local
34 const OMX_F32 *in3 = in2 + 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_ls_sse.c33 const OMX_F32 *in2 = in1 + 4; local
34 const OMX_F32 *in3 = in2 + 4;
70 VC_LOAD_MATRIX_TRANSPOSE(&v_t0, &v_t1, &v_t2, &v_t3, in0, in1, in2, in3, n);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFEBlendElement.idl41 readonly attribute SVGAnimatedString in2;
H A DSVGFEDisplacementMapElement.idl39 readonly attribute SVGAnimatedString in2;
H A DSVGFECompositeElement.idl41 readonly attribute SVGAnimatedString in2;
/external/webrtc/src/common_audio/signal_processing/
H A Dresample.c312 static void WebRtcSpl_DotProdIntToInt(const WebRtc_Word32* in1, const WebRtc_Word32* in2, argument
322 tmp2 += coef * in2[-0];
326 tmp2 += coef * in2[-1];
330 tmp2 += coef * in2[-2];
334 tmp2 += coef * in2[-3];
338 tmp2 += coef * in2[-4];
342 tmp2 += coef * in2[-5];
346 tmp2 += coef * in2[-6];
350 tmp2 += coef * in2[-7];
354 *out2 = tmp2 + coef * in2[
358 WebRtcSpl_DotProdIntToShort(const WebRtc_Word32* in1, const WebRtc_Word32* in2, const WebRtc_Word16* coef_ptr, WebRtc_Word16* out1, WebRtc_Word16* out2) argument
[all...]
H A Dresample_fractional.c149 static void WebRtcSpl_ResampDotProduct(const WebRtc_Word32 *in1, const WebRtc_Word32 *in2, argument
159 tmp2 += coef * in2[-0];
163 tmp2 += coef * in2[-1];
167 tmp2 += coef * in2[-2];
171 tmp2 += coef * in2[-3];
175 tmp2 += coef * in2[-4];
179 tmp2 += coef * in2[-5];
183 tmp2 += coef * in2[-6];
187 tmp2 += coef * in2[-7];
191 *out2 = tmp2 + coef * in2[
[all...]
/external/chromium_org/ipc/
H A Dipc_sync_message_unittest.cc60 void On_2_1(int in1, bool in2, bool* out1) { argument
62 DCHECK(!in2);
66 void On_2_2(bool in1, int in2, bool* out1, int* out2) { argument
68 DCHECK_EQ(2, in2);
73 void On_2_3(int in1, bool in2, std::string* out1, int* out2, bool* out3) { argument
75 DCHECK(in2);
81 void On_3_1(int in1, bool in2, std::string in3, bool* out1) { argument
83 DCHECK(!in2);
88 void On_3_2(std::string in1, bool in2, int in3, bool* out1, int* out2) { argument
90 DCHECK(!in2);
96 On_3_3(int in1, std::string in2, bool in3, std::string* out1, int* out2, bool* out3) argument
106 On_3_4(bool in1, int in2, std::string in3, int* out1, bool* out2, std::string* out3, bool* out4) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEBlend.cpp81 FilterEffect* in2 = inputEffect(1); local
86 IntRect effectBDrawingRect = requestedRegionOfInputImageData(in2->absolutePaintRect());
87 RefPtr<Uint8ClampedArray> srcPixelArrayB = in2->asPremultipliedImage(effectBDrawingRect);
117 FilterEffect* in2 = inputEffect(1); local
125 ImageBuffer* imageBuffer2 = in2->asImageBuffer();
129 filterContext->drawImageBuffer(imageBuffer2, drawingRegionOfInputImage(in2->absolutePaintRect()));
H A DFEComposite.cpp294 FilterEffect* in2 = inputEffect(1); local
304 IntRect effectBDrawingRect = requestedRegionOfInputImageData(in2->absolutePaintRect());
305 in2->copyPremultipliedImage(dstPixelArray, effectBDrawingRect);
317 ImageBuffer* imageBuffer2 = in2->asImageBuffer();
323 filterContext->drawImageBuffer(imageBuffer2, drawingRegionOfInputImage(in2->absolutePaintRect()));
329 destinationRect.intersect(in2->absolutePaintRect());
335 FloatRect source2Rect(IntPoint(destinationRect.x() - in2->absolutePaintRect().x(),
336 destinationRect.y() - in2->absolutePaintRect().y()), destinationRect.size());
344 filterContext->drawImageBuffer(imageBuffer2, drawingRegionOfInputImage(in2->absolutePaintRect()), 0, CompositeDestinationOut);
347 filterContext->drawImageBuffer(imageBuffer2, drawingRegionOfInputImage(in2
[all...]
/external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
H A Dsynthesis-dct8.c92 double in0,in1,in2,in3; local
97 in2 = FLOAT_SCALE(in[2], DCTII_8_SHIFT_IN); OI_ASSERT(VALID_INT32(in2));
106 L02 = (in2 + in5); OI_ASSERT(VALID_INT32(L02));
110 L05 = (in2 - in5); OI_ASSERT(VALID_INT32(L05));
217 OI_INT32 in0,in1,in2,in3; local
223 in2 = SCALE(in[2], DCTII_8_SHIFT_IN);
232 in2 = in[2];
242 L02 = in2 + in5;
246 L05 = in2
[all...]
/external/linux-tools-perf/perf-3.12.0/arch/ia64/lib/
H A Dmemcpy_mck.S7 * in2: number of bytes to copy
71 #define in2 r34 define
92 cmp.gt p15,p0=8,in2 // check for small size
97 mov saved_in2=in2 // save len
114 shr.u cnt=in2,7 // this much cache line
137 and tmp=31,in2 // copy length after iteration
138 shr.u r29=in2,5 // number of 32-byte iteration
176 and in2=7,tmp // remaining length
202 shr.u cnt=in2,7 // number of lines
207 and tmp=127,in2 // remainin
[all...]

Completed in 436 milliseconds

12345