Searched defs:in1 (Results 1 - 20 of 20) sorted by relevance

/external/webrtc/src/common_audio/signal_processing/
H A Dresample_fractional.c149 static void WebRtcSpl_ResampDotProduct(const WebRtc_Word32 *in1, const WebRtc_Word32 *in2, argument
158 tmp1 += coef * in1[0];
162 tmp1 += coef * in1[1];
166 tmp1 += coef * in1[2];
170 tmp1 += coef * in1[3];
174 tmp1 += coef * in1[4];
178 tmp1 += coef * in1[5];
182 tmp1 += coef * in1[6];
186 tmp1 += coef * in1[7];
190 *out1 = tmp1 + coef * in1[
[all...]
H A Dilbc_specific_functions.c74 void WebRtcSpl_AddVectorsAndShift(WebRtc_Word16 *out, G_CONST WebRtc_Word16 *in1, argument
80 G_CONST WebRtc_Word16 *in1ptr = in1;
H A Dresample.c312 static void WebRtcSpl_DotProdIntToInt(const WebRtc_Word32* in1, const WebRtc_Word32* in2, argument
321 tmp1 += coef * in1[0];
325 tmp1 += coef * in1[1];
329 tmp1 += coef * in1[2];
333 tmp1 += coef * in1[3];
337 tmp1 += coef * in1[4];
341 tmp1 += coef * in1[5];
345 tmp1 += coef * in1[6];
349 tmp1 += coef * in1[7];
353 *out1 = tmp1 + coef * in1[
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 Dvector_scaling_operations.c132 void WebRtcSpl_ScaleAndAddVectors(G_CONST WebRtc_Word16 *in1, WebRtc_Word16 gain1, int shift1, argument
136 // Performs vector operation: out = (gain1*in1)>>shift1 + (gain2*in2)>>shift2
142 in1ptr = in1;
/external/libvpx/vp8/decoder/mips/
H A Ddequantize_mips.c59 unsigned int in1, dq1, x1, in2, dq2; local
63 "lh %[in1], 0(%[input]) \n\t"
67 "append %[in1], %[in2], 16 \n\t"
69 "mul.ph %[x1], %[dq1], %[in1] \n\t"
74 : [x1] "=&r" (x1), [in1] "=&r" (in1), [dq1] "=&r" (dq1),
120 unsigned int in1, dq1, x1, in2, dq2; local
126 "lh %[in1], 2(%[input]) \n\t"
130 "append %[in1], %[in2], 16 \n\t"
132 "mul.ph %[x1], %[dq1], %[in1] \
[all...]
/external/clang/test/CodeGen/
H A Dmult-alt-generic.c43 register int in1 = 1; local
45 asm("foo %1,%0" : "=r" (out0) : "<r" (in1));
47 asm("foo %1,%0" : "=r" (out0) : "r<" (in1));
54 register int in1 = 1; local
56 asm("foo %1,%0" : "=r" (out0) : ">r" (in1));
58 asm("foo %1,%0" : "=r" (out0) : "r>" (in1));
65 register int in1 = 1; local
67 asm("foo %1,%0" : "=r" (out0) : "r" (in1));
113 register int in1 = 1; local
115 asm("foo %1,%0" : "=r" (out0) : "g" (in1));
126 register int in1 = 1; local
176 register int in1 = 1; local
187 register int in1 = 1; local
198 register int in1 = 1; local
246 register int in1 = 1; local
259 register int in1 = 1; local
[all...]
/external/llvm/examples/BrainF/
H A DBrainF.cpp40 Module *BrainF::parse(std::istream *in1, int mem, CompileFlags cf, argument
42 in = in1;
/external/mesa3d/src/pixelflinger2/
H A Dllvm_helper.h32 static Value * minIntScalar(IRBuilder<> &builder, Value * in1, Value * in2) argument
34 Value * cmp = builder.CreateICmpSLT(in1, in2);
35 return builder.CreateSelect(cmp, in1, in2);
38 static Value * maxIntScalar(IRBuilder<> &builder, Value * in1, Value * in2) argument
40 Value * cmp = builder.CreateICmpSGT(in1, in2);
41 return builder.CreateSelect(cmp, in1, in2);
104 static Value * intVecMax(IRBuilder<> & builder, Value * in1, Value * in2) argument
106 std::vector<Value *> vec1 = extractVector(builder, in1);
115 static Value * intVecMin(IRBuilder<> & builder, Value * in1, Value * in2) argument
117 std::vector<Value *> vec1 = extractVector(builder, in1);
[all...]
H A Dllvm_texture.cpp274 Value * tex2D(IRBuilder<> & builder, Value * in1, const unsigned sampler, argument
282 std::vector<Value * > texcoords = extractVector(builder, in1);
364 Value * texCube(IRBuilder<> & builder, Value * in1, const unsigned sampler, argument
379 std::vector<Value * > texcoords = extractVector(builder, in1);
/external/libyuv/files/source/
H A Dconvert.cc328 const uint8* in1 = src_y; local
339 out1[0] = in1[0];
341 out1[2] = in1[1];
352 in1 += 2;
355 in1 += 2 * src_stride_y - width;
368 mov eax, DWORD PTR [in1] ;1939.33
380 movdqu xmm3, XMMWORD PTR [eax] ;in1
382 punpcklbw xmm1, xmm6 ;in1, src_u, in1, src_v
392 punpckhbw xmm3, xmm6 ;in1, src_
[all...]
/external/quake/quake/src/QW/client/
H A Dmathlib.c431 void R_ConcatRotations (float in1[3][3], float in2[3][3], float out[3][3]) argument
433 out[0][0] = in1[0][0] * in2[0][0] + in1[0][1] * in2[1][0] +
434 in1[0][2] * in2[2][0];
435 out[0][1] = in1[0][0] * in2[0][1] + in1[0][1] * in2[1][1] +
436 in1[0][2] * in2[2][1];
437 out[0][2] = in1[0][0] * in2[0][2] + in1[0][1] * in2[1][2] +
438 in1[
459 R_ConcatTransforms(float in1[3][4], float in2[3][4], float out[3][4]) argument
[all...]
/external/quake/quake/src/WinQuake/
H A Dmathlib.cpp433 void R_ConcatRotations (float in1[3][3], float in2[3][3], float out[3][3]) argument
435 out[0][0] = in1[0][0] * in2[0][0] + in1[0][1] * in2[1][0] +
436 in1[0][2] * in2[2][0];
437 out[0][1] = in1[0][0] * in2[0][1] + in1[0][1] * in2[1][1] +
438 in1[0][2] * in2[2][1];
439 out[0][2] = in1[0][0] * in2[0][2] + in1[0][1] * in2[1][2] +
440 in1[
461 R_ConcatTransforms(float in1[3][4], float in2[3][4], float out[3][4]) argument
[all...]
/external/webp/src/dsp/
H A Ddec_sse2.c51 __m128i in0, in1, in2, in3; local
54 in1 = _mm_loadl_epi64((__m128i*)&in[4]);
67 in1 = _mm_unpacklo_epi64(in1, inB1);
83 // c = MUL(in1, K2) - MUL(in3, K1) = MUL(in1, k2) - MUL(in3, k1) + in1 - in3
84 const __m128i c1 = _mm_mulhi_epi16(in1, k2);
86 const __m128i c3 = _mm_sub_epi16(in1, in3);
89 // d = MUL(in1, K
[all...]
H A Denc_sse2.c100 __m128i in0, in1, in2, in3; local
103 in1 = _mm_loadl_epi64((__m128i*)&in[4]);
116 in1 = _mm_unpacklo_epi64(in1, inB1);
132 // c = MUL(in1, K2) - MUL(in3, K1) = MUL(in1, k2) - MUL(in3, k1) + in1 - in3
133 const __m128i c1 = _mm_mulhi_epi16(in1, k2);
135 const __m128i c3 = _mm_sub_epi16(in1, in3);
138 // d = MUL(in1, K
[all...]
/external/icu4c/test/cintltst/
H A Dnccbtst.c1715 in1[]={ 0xfe, 0xff, 0x4e, 0x00, 0xfe, 0xff }, local
1729 if(!testConvertToUnicode(in1, ARRAY_LENGTH(in1), out1, ARRAY_LENGTH(out1), "UTF-16",
1751 in1[]={ 0x00, 0x00, 0xfe, 0xff, 0x00, 0x10, 0x0f, 0x00, 0x00, 0x00, 0xfe, 0xff }, local
1768 if(!testConvertToUnicode(in1, ARRAY_LENGTH(in1), out1, ARRAY_LENGTH(out1), "UTF-32",
H A Dnucnvtst.c2044 static const uint8_t in1[]={ local
2082 source=(const char *)in1, limit=(const char *)in1+sizeof(in1);
2212 static const uint8_t in1[]={ local
2250 source=(const char *)in1, limit=(const char *)in1+sizeof(in1);
2432 static const uint16_t in1[] = { local
2532 TestConv((uint16_t*)in1,sizeo
[all...]
/external/v8/src/
H A Dheap.cc6873 uint32_t in1 = 0xffffffffu; // generated by the FPU. local
6876 elements_[i].in[1] = in1;
/external/sqlite/dist/orig/
H A Dsqlite3.c8745 #define OPFLG_IN1 0x0004 /* in1: P1 is an input */
74631 codeCompare( Parse *pParse, Expr *pLeft, Expr *pRight, int opcode, int in1, int in2, int dest, int jumpIfNull ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c8745 #define OPFLG_IN1 0x0004 /* in1: P1 is an input */
74644 codeCompare( Parse *pParse, Expr *pLeft, Expr *pRight, int opcode, int in1, int in2, int dest, int jumpIfNull ) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 643 milliseconds