Searched refs:temp2 (Results 1 - 25 of 216) sorted by relevance

123456789

/external/libavc/common/x86/
H A Dih264_deblk_luma_ssse3.c104 __m128i temp1, temp2, temp3, temp4, temp5, temp6; local
123 temp2 = _mm_unpacklo_epi8(line3, line4);
127 line1 = _mm_unpacklo_epi16(temp1, temp2);
128 line2 = _mm_unpackhi_epi16(temp1, temp2);
147 temp2 = _mm_unpacklo_epi8(line3, line4);
151 line1 = _mm_unpacklo_epi16(temp1, temp2);
152 line2 = _mm_unpackhi_epi16(temp1, temp2);
157 temp2 = _mm_unpackhi_epi32(line1, line3);
165 p1_16x8 = _mm_unpacklo_epi64(p0_8x16, temp2);
166 p0_16x8 = _mm_unpackhi_epi64(p0_8x16, temp2);
528 __m128i temp1, temp2, temp3, temp4, temp5, temp6; local
1157 __m128i temp1, temp2; local
1456 __m128i temp1, temp2, temp3, temp4, temp5, temp6; local
1772 __m128i temp1, temp2, temp3, temp4; local
[all...]
H A Dih264_ihadamard_scaling_ssse3.c98 __m128i temp0, temp1, temp2, temp3; local
128 temp2 = _mm_unpacklo_epi32(src_r2, src_r3); //c0 d0 c1 d1
131 src_r0 = _mm_unpacklo_epi64(temp0, temp2); //a0 b0 c0 d0
132 src_r1 = _mm_unpackhi_epi64(temp0, temp2); //a1 b1 c1 d1
138 temp2 = _mm_sub_epi32(src_r1, src_r2);
142 src_r1 = _mm_add_epi32(temp2, temp3);
144 src_r3 = _mm_sub_epi32(temp3, temp2);
157 temp2 = _mm_unpacklo_epi32(src_r2, src_r3); //a2 a3 b2 b3
160 src_r0 = _mm_unpacklo_epi64(temp0, temp2); //a0 a1 a2 a3
161 src_r1 = _mm_unpackhi_epi64(temp0, temp2); //b
[all...]
H A Dih264_resi_trans_quant_sse42.c120 __m128i temp0, temp1, temp2, temp3; local
166 temp2 = _mm_unpacklo_epi16(src_r2, src_r3); //c0 d0 c1 d1 c2 d2 c3 d3
167 temp1 = _mm_unpacklo_epi32(temp0, temp2); //a0 b0 c0 d0 a1 b1 c1 d1
168 temp3 = _mm_unpackhi_epi32(temp0, temp2); //a2 b2 c2 d2 a3 b3 c3 d3
181 temp2 = _mm_sub_epi16(src_r1, src_r2);
189 src_r1 = _mm_add_epi16(src_r1, temp2);
193 src_r3 = _mm_slli_epi16(temp2, 1); //(x2<<1)
204 temp2 = _mm_unpacklo_epi16(src_r2, src_r3); //a2 a3 b2 b3 c2 c3 d2 d3
205 temp1 = _mm_unpacklo_epi32(temp0, temp2); //a0 a1 a2 a3 b0 b1 b2 b3
206 temp3 = _mm_unpackhi_epi32(temp0, temp2); //c
394 __m128i temp0, temp1, temp2, temp3; local
678 __m128i temp0, temp1, temp2, temp3; local
[all...]
H A Dih264_ihadamard_scaling_sse42.c98 __m128i temp0, temp1, temp2, temp3; local
126 temp2 = _mm_unpacklo_epi32(src_r2, src_r3); //c0 d0 c1 d1
129 src_r0 = _mm_unpacklo_epi64(temp0, temp2); //a0 b0 c0 d0
130 src_r1 = _mm_unpackhi_epi64(temp0, temp2); //a1 b1 c1 d1
136 temp2 = _mm_sub_epi32(src_r1, src_r2);
140 src_r1 = _mm_add_epi32(temp2, temp3);
142 src_r3 = _mm_sub_epi32(temp3, temp2);
155 temp2 = _mm_unpacklo_epi32(src_r2, src_r3); //a2 a3 b2 b3
158 src_r0 = _mm_unpacklo_epi64(temp0, temp2); //a0 a1 a2 a3
159 src_r1 = _mm_unpackhi_epi64(temp0, temp2); //b
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dinterpolate_samples.c27 int16_t *ppi, *ppo, i, j, temp1, temp2; local
35 temp2 = 3;
40 *tmpPtr++ = (int16_t)((WebRtcIlbcfix_kAlpha[temp2] * *ppo) >> 15) +
46 temp2--;
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp6.cpp5 // expected-note {{no overload of 'temp2' matching 'void (*)(int)'}}
39 template<class A, class B> B temp2(A);
42 apply(0, &temp2);
43 apply(0, &temp2<>);
44 apply(0, &temp2<int>);
47 apply(0, &temp2<long>); // expected-error {{no matching function for call to 'apply'}}
80 template<class A, class B> B temp2(A);
83 // (even though partial application temp2<int> could in theory
85 invoke(&temp2); // expected-error {{no matching function for call to 'invoke'}}
86 invoke(&temp2<>); // expecte
[all...]
/external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/
H A Dmember_swap.pass.cpp24 std::string temp2 = get_temp_file_name(); local
27 std::ofstream fs2(temp2.c_str());
44 std::ifstream fs(temp2.c_str());
51 std::remove(temp2.c_str());
54 std::wofstream fs2(temp2.c_str());
71 std::wifstream fs(temp2.c_str());
78 std::remove(temp2.c_str());
H A Dnonmember_swap.pass.cpp25 std::string temp2 = get_temp_file_name(); local
28 std::ofstream fs2(temp2.c_str());
45 std::ifstream fs(temp2.c_str());
52 std::remove(temp2.c_str());
55 std::wofstream fs2(temp2.c_str());
72 std::wifstream fs(temp2.c_str());
79 std::remove(temp2.c_str());
/external/webp/src/dsp/
H A Dargb_mips_dsp_r2.c20 int temp0, temp1, temp2, temp3, offset; local
30 "lbux %[temp2], %[offset](%[g]) \n\t"
33 "ins %[temp3], %[temp2], 16, 16 \n\t"
43 "lbux %[temp2], %[offset](%[g]) \n\t"
46 "ins %[temp3], %[temp2], 16, 16 \n\t"
50 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
60 int temp0, temp1, temp2, offset; local
70 "lbux %[temp2], %[offset](%[b]) \n\t"
72 "ins %[temp2],
[all...]
H A Dlossless_mips_dsp_r2.c96 int temp0, temp1, temp2, temp3, temp4, temp5; local
99 "preceu.ph.qbl %[temp2], %[c0] \n\t"
107 "addq.ph %[temp2], %[temp2], %[temp4] \n\t"
109 "shll_s.ph %[temp2], %[temp2], 7 \n\t"
110 "precrqu_s.qb.ph %[temp2], %[temp2], %[temp1] \n\t"
111 : [temp0]"=r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
121 int temp0, temp1, temp2, temp3, temp4, temp5; local
150 int temp0, temp1, temp2, temp3, temp4, temp5; local
233 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; local
291 int temp0, temp1, temp2, temp3, temp4, temp5; local
361 int temp0, temp1, temp2, temp3; local
413 int temp0, temp1, temp2, temp3; local
463 int temp0, temp1, temp2, temp3, temp4, temp5; local
537 int temp0, temp1, temp2, temp3, temp4, temp5; local
615 int temp0, temp1, temp2, temp3; local
[all...]
H A Denc_mips_dsp_r2.c147 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; local
154 HORIZONTAL_PASS(0, temp0, temp1, temp2, temp3)
161 VERTICAL_PASS(4, 12, 20, 28, temp2, temp6, temp10, temp14)
175 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; local
180 "ulw %[temp2], 16(%[in]) \n\t"
182 ADD_SUB_HALVES(temp3, temp4, temp1, temp2)
183 LOAD_IN_X2(temp1, temp2, 8, 10)
185 temp10, temp8, temp9, temp7, temp1, temp2, temp5, temp6,
190 ADD_SUB_HALVES(temp1, temp2, temp3, temp8)
203 SRA_16(temp9, temp10, temp11, temp12, temp1, temp2, temp
251 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; local
484 int temp0, temp1, temp2, temp3; local
547 int temp0, temp1, temp2, temp3; local
611 int a10, a32, temp0, temp1, temp2, temp3, temp4, temp5; local
666 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; local
697 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; local
733 int temp0, temp1, temp2, temp3, temp4, temp5; local
782 int temp0, temp1, temp2, temp3, temp4; local
832 int temp0, temp1, temp2, temp3, temp4, temp5; local
879 int temp0, temp1, temp2, temp3, temp4; local
928 int temp0, temp1, temp2, temp3, temp4; local
976 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; local
1082 int temp0, temp1, temp2, temp3; local
1112 int temp0, temp1, temp2, temp3; local
1134 int temp0, temp1, temp2, temp3; local
1152 int temp0, temp1, temp2, temp3; local
1275 int temp0, temp1, temp2, temp3, temp4, temp5,temp6; local
1362 int temp0, temp1, temp2, temp3, temp4; local
1461 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; local
[all...]
H A Dalpha_processing_mips_dsp_r2.c29 int temp1, temp2, temp3; local
36 "srl %[temp2], %[temp0], 16 \n\t"
41 "sb %[temp2], -8(%[pdst]) \n\t"
43 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
94 int temp0, temp1, temp2, temp3, alpha; local
104 "ext %[temp2], %[argb], 8, 8 \n\t"
107 "mul %[temp2], %[temp2], %[temp0] \n\t"
109 "precrq.ph.w %[temp1], %[temp2],
[all...]
H A Dyuv_mips32.c29 int temp0, temp1, temp2, temp3, temp4; \
33 temp2 = MultHi(u[0], 6419); \
38 temp2 += temp3; \
41 g = VP8Clip8(temp0 - temp2); \
49 g = VP8Clip8(temp0 - temp2); \
63 temp2 = MultHi(u[0], 6419); \
68 temp2 += temp3; \
71 g = VP8Clip8(temp0 - temp2); \
H A Dlossless_enc_mips_dsp_r2.c23 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; local
34 "lw %[temp2], 8(%[argb_data]) \n\t"
38 "ext %[temp6], %[temp2], 8, 8 \n\t"
47 "subu.qb %[temp2], %[temp2], %[temp6] \n\t"
51 "sw %[temp2], -8(%[argb_data]) \n\t"
68 [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), [temp3]"=&r"(temp3),
83 int temp0, temp1, temp2, temp3, temp4, temp5; local
96 "replv.ph %[temp2],
186 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; local
234 int temp0, temp1, temp2, temp3, temp4; local
[all...]
H A Drescaler_mips32.c38 int temp1, temp2, temp3; local
45 "li %[temp2], 0x10000 \n\t"
63 "mult %[temp1], %[temp2] \n\t"
73 [temp2]"=&r"(temp2), [temp1]"=&r"(temp1)
97 int temp1, temp2, temp3, temp4; local
104 "lbu %[temp2], 0(%[src1]) \n\t"
107 "addiu %[temp1], %[temp2], 0 \n\t"
114 "subu %[temp3], %[temp2], %[temp1] \n\t"
125 "addiu %[temp2],
153 const int temp2 = (int)wrk->fy_scale; local
217 const int temp2 = (int)wrk->fxy_scale; local
[all...]
H A Ddec_mips_dsp_r2.c27 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9, temp10; local
30 LOAD_WITH_OFFSET_X4(temp1, temp2, temp3, temp4, dst,
38 CONVERT_2_BYTES_TO_HALF(temp6, temp7, temp8, temp9, temp10, temp1, temp2,
39 temp3, temp1, temp2, temp3, temp4)
40 STORE_SAT_SUM_X2(temp6, temp7, temp8, temp9, temp10, temp1, temp2, temp3,
56 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; local
63 ADD_SUB_HALVES(temp2, temp3, temp1, c4)
65 SHIFT_R_SUM_X2(temp1, temp6, temp7, temp8, temp2, temp9, temp10, temp4,
66 temp2, temp2, temp
87 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; local
164 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; local
302 int step1, step2, temp1, temp2, temp3, temp4; local
490 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; local
559 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; local
631 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; local
660 int temp0, temp1, temp2, temp3, temp4; local
682 int temp0, temp1, temp2, temp3, temp4; local
732 int temp0, temp1, temp2, temp3, temp4; local
779 int temp0, temp1, temp2, temp3, temp4; local
839 int temp0, temp1, temp2, temp3, temp4; local
[all...]
/external/ltp/testcases/commands/lsmod/
H A Dlsmod01.sh48 awk '{print $1, $2, $3}' /proc/modules |sort >temp2
50 diff temp1 temp2 >temp3
/external/eigen/blas/f2c/
H A Dchpmv.c29 complex temp1, temp2; local
250 temp2.r = 0.f, temp2.i = 0.f;
266 q__1.r = temp2.r + q__2.r, q__1.i = temp2.i + q__2.i;
267 temp2.r = q__1.r, temp2.i = q__1.i;
277 q__4.r = alpha->r * temp2.r - alpha->i * temp2.i, q__4.i =
278 alpha->r * temp2
[all...]
H A Dzhpmv.c29 doublecomplex temp1, temp2; local
250 temp2.r = 0., temp2.i = 0.;
266 z__1.r = temp2.r + z__2.r, z__1.i = temp2.i + z__2.i;
267 temp2.r = z__1.r, temp2.i = z__1.i;
277 z__4.r = alpha->r * temp2.r - alpha->i * temp2.i, z__4.i =
278 alpha->r * temp2
[all...]
/external/selinux/libselinux/src/
H A Dselinuxswig.i21 %typemap(in, numinputs=0) (char ***names, int *len) (char **temp1, int temp2) {
23 $2 = &temp2;
/external/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/
H A Dmember_swap.pass.cpp24 std::string temp2 = get_temp_file_name(); local
28 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
47 std::remove(temp2.c_str());
51 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
70 std::remove(temp2.c_str());
H A Dnonmember_swap.pass.cpp25 std::string temp2 = get_temp_file_name(); local
29 std::fstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
48 std::remove(temp2.c_str());
52 std::wfstream fs2(temp2.c_str(), std::ios_base::in | std::ios_base::out
71 std::remove(temp2.c_str());
/external/libvpx/libvpx/vpx_dsp/mips/
H A Ditrans32_cols_dspr2.c31 int temp0, temp1, temp2, temp3; local
83 "extp %[temp2], $ac1, 31 \n\t"
90 "sub %[load1], %[temp3], %[temp2] \n\t"
101 "add %[step1_31], %[temp2], %[temp3] \n\t"
105 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3),
143 "extp %[temp2], $ac1, 31 \n\t"
151 "sub %[load2], %[temp2], %[temp3] \n\t"
161 "add %[step1_28], %[temp2], %[temp3] \n\t"
165 [temp2] "
[all...]
/external/libvpx/libvpx/vp8/common/
H A Didctllm.c38 int temp1, temp2; local
46 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16);
47 c1 = temp1 - temp2;
50 temp2 = (ip[12] * sinpi8sqrt2) >> 16;
51 d1 = temp1 + temp2;
71 temp2 = ip[3] + ((ip[3] * cospi8sqrt2minus1) >> 16);
72 c1 = temp1 - temp2;
75 temp2 = (ip[3] * sinpi8sqrt2) >> 16;
76 d1 = temp1 + temp2;
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dhighbd_idct16x16_add_sse2.c23 __m128i min_input, max_input, temp1, temp2, sign_bits; local
33 temp2 = _mm_loadu_si128((const __m128i *)(input + 16 * i + 4));
34 inptr[i] = _mm_packs_epi32(temp1, temp2);
36 temp2 = _mm_loadu_si128((const __m128i *)(input + 16 * i + 12));
37 inptr[i + 16] = _mm_packs_epi32(temp1, temp2);
73 temp2 = _mm_unpackhi_epi16(inptr[i], sign_bits);
75 _mm_storeu_si128((__m128i *)(outptr + 4 * (i * 4 + 1)), temp2);
78 temp2 = _mm_unpackhi_epi16(inptr[i + 16], sign_bits);
80 _mm_storeu_si128((__m128i *)(outptr + 4 * (i * 4 + 3)), temp2);
135 __m128i min_input, max_input, temp1, temp2, sign_bit local
[all...]

Completed in 868 milliseconds

123456789