Home
last modified time | relevance | path

Searched refs:temp2 (Results 1 – 25 of 217) sorted by relevance

123456789

/external/libavc/common/x86/
Dih264_deblk_luma_ssse3.c104 __m128i temp1, temp2, temp3, temp4, temp5, temp6; in ih264_deblk_luma_vert_bs4_ssse3() local
123 temp2 = _mm_unpacklo_epi8(line3, line4); in ih264_deblk_luma_vert_bs4_ssse3()
127 line1 = _mm_unpacklo_epi16(temp1, temp2); in ih264_deblk_luma_vert_bs4_ssse3()
128 line2 = _mm_unpackhi_epi16(temp1, temp2); in ih264_deblk_luma_vert_bs4_ssse3()
147 temp2 = _mm_unpacklo_epi8(line3, line4); in ih264_deblk_luma_vert_bs4_ssse3()
151 line1 = _mm_unpacklo_epi16(temp1, temp2); in ih264_deblk_luma_vert_bs4_ssse3()
152 line2 = _mm_unpackhi_epi16(temp1, temp2); in ih264_deblk_luma_vert_bs4_ssse3()
157 temp2 = _mm_unpackhi_epi32(line1, line3); in ih264_deblk_luma_vert_bs4_ssse3()
165 p1_16x8 = _mm_unpacklo_epi64(p0_8x16, temp2); in ih264_deblk_luma_vert_bs4_ssse3()
166 p0_16x8 = _mm_unpackhi_epi64(p0_8x16, temp2); in ih264_deblk_luma_vert_bs4_ssse3()
[all …]
Dih264_resi_trans_quant_sse42.c120 __m128i temp0, temp1, temp2, temp3; in ih264_resi_trans_quant_4x4_sse42() local
166 temp2 = _mm_unpacklo_epi16(src_r2, src_r3); //c0 d0 c1 d1 c2 d2 c3 d3 in ih264_resi_trans_quant_4x4_sse42()
167 temp1 = _mm_unpacklo_epi32(temp0, temp2); //a0 b0 c0 d0 a1 b1 c1 d1 in ih264_resi_trans_quant_4x4_sse42()
168 temp3 = _mm_unpackhi_epi32(temp0, temp2); //a2 b2 c2 d2 a3 b3 c3 d3 in ih264_resi_trans_quant_4x4_sse42()
181 temp2 = _mm_sub_epi16(src_r1, src_r2); in ih264_resi_trans_quant_4x4_sse42()
189 src_r1 = _mm_add_epi16(src_r1, temp2); in ih264_resi_trans_quant_4x4_sse42()
193 src_r3 = _mm_slli_epi16(temp2, 1); //(x2<<1) in ih264_resi_trans_quant_4x4_sse42()
204 temp2 = _mm_unpacklo_epi16(src_r2, src_r3); //a2 a3 b2 b3 c2 c3 d2 d3 in ih264_resi_trans_quant_4x4_sse42()
205 temp1 = _mm_unpacklo_epi32(temp0, temp2); //a0 a1 a2 a3 b0 b1 b2 b3 in ih264_resi_trans_quant_4x4_sse42()
206 temp3 = _mm_unpackhi_epi32(temp0, temp2); //c0 c1 c2 c3 d0 d1 d2 d3 in ih264_resi_trans_quant_4x4_sse42()
[all …]
Dih264_ihadamard_scaling_ssse3.c98 __m128i temp0, temp1, temp2, temp3; in ih264_ihadamard_scaling_4x4_ssse3() local
128 temp2 = _mm_unpacklo_epi32(src_r2, src_r3); //c0 d0 c1 d1 in ih264_ihadamard_scaling_4x4_ssse3()
131 src_r0 = _mm_unpacklo_epi64(temp0, temp2); //a0 b0 c0 d0 in ih264_ihadamard_scaling_4x4_ssse3()
132 src_r1 = _mm_unpackhi_epi64(temp0, temp2); //a1 b1 c1 d1 in ih264_ihadamard_scaling_4x4_ssse3()
138 temp2 = _mm_sub_epi32(src_r1, src_r2); in ih264_ihadamard_scaling_4x4_ssse3()
142 src_r1 = _mm_add_epi32(temp2, temp3); in ih264_ihadamard_scaling_4x4_ssse3()
144 src_r3 = _mm_sub_epi32(temp3, temp2); in ih264_ihadamard_scaling_4x4_ssse3()
157 temp2 = _mm_unpacklo_epi32(src_r2, src_r3); //a2 a3 b2 b3 in ih264_ihadamard_scaling_4x4_ssse3()
160 src_r0 = _mm_unpacklo_epi64(temp0, temp2); //a0 a1 a2 a3 in ih264_ihadamard_scaling_4x4_ssse3()
161 src_r1 = _mm_unpackhi_epi64(temp0, temp2); //b0 b1 b2 b3 in ih264_ihadamard_scaling_4x4_ssse3()
[all …]
Dih264_iquant_itrans_recon_sse42.c119 __m128i temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; in ih264_iquant_itrans_recon_4x4_sse42() local
185 temp2 = _mm_unpackhi_epi32(resq_r0, resq_r1); //a2 b2 a3 b3 in ih264_iquant_itrans_recon_4x4_sse42()
189 resq_r2 = _mm_unpacklo_epi64(temp2, temp4); //a2 b2 c2 d2 in ih264_iquant_itrans_recon_4x4_sse42()
190 resq_r3 = _mm_unpackhi_epi64(temp2, temp4); //a3 b3 c3 d3 in ih264_iquant_itrans_recon_4x4_sse42()
198 temp2 = _mm_srai_epi32(resq_r1, 1); //(w1>>1) in ih264_iquant_itrans_recon_4x4_sse42()
199 temp2 = _mm_sub_epi32(temp2, resq_r3); //(w1>>1) - w3 in ih264_iquant_itrans_recon_4x4_sse42()
207 resq_r1 = _mm_add_epi32(temp1, temp2); in ih264_iquant_itrans_recon_4x4_sse42()
209 resq_r2 = _mm_sub_epi32(temp1, temp2); in ih264_iquant_itrans_recon_4x4_sse42()
221 temp2 = _mm_unpackhi_epi32(resq_r0, resq_r1); //c0 c1 d0 d1 in ih264_iquant_itrans_recon_4x4_sse42()
225 resq_r2 = _mm_unpacklo_epi64(temp2, temp4); //c0 c1 c2 c3 in ih264_iquant_itrans_recon_4x4_sse42()
[all …]
Dih264_ihadamard_scaling_sse42.c98 __m128i temp0, temp1, temp2, temp3; in ih264_ihadamard_scaling_4x4_sse42() local
126 temp2 = _mm_unpacklo_epi32(src_r2, src_r3); //c0 d0 c1 d1 in ih264_ihadamard_scaling_4x4_sse42()
129 src_r0 = _mm_unpacklo_epi64(temp0, temp2); //a0 b0 c0 d0 in ih264_ihadamard_scaling_4x4_sse42()
130 src_r1 = _mm_unpackhi_epi64(temp0, temp2); //a1 b1 c1 d1 in ih264_ihadamard_scaling_4x4_sse42()
136 temp2 = _mm_sub_epi32(src_r1, src_r2); in ih264_ihadamard_scaling_4x4_sse42()
140 src_r1 = _mm_add_epi32(temp2, temp3); in ih264_ihadamard_scaling_4x4_sse42()
142 src_r3 = _mm_sub_epi32(temp3, temp2); in ih264_ihadamard_scaling_4x4_sse42()
155 temp2 = _mm_unpacklo_epi32(src_r2, src_r3); //a2 a3 b2 b3 in ih264_ihadamard_scaling_4x4_sse42()
158 src_r0 = _mm_unpacklo_epi64(temp0, temp2); //a0 a1 a2 a3 in ih264_ihadamard_scaling_4x4_sse42()
159 src_r1 = _mm_unpackhi_epi64(temp0, temp2); //b0 b1 b2 b3 in ih264_ihadamard_scaling_4x4_sse42()
[all …]
/external/webp/src/dsp/
Denc_mips_dsp_r2.c147 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in FTransform() local
154 HORIZONTAL_PASS(0, temp0, temp1, temp2, temp3) in FTransform()
161 VERTICAL_PASS(4, 12, 20, 28, temp2, temp6, temp10, temp14) in FTransform()
175 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; in ITransformOne() local
182 ADD_SUB_HALVES(temp3, temp4, temp1, temp2) in ITransformOne()
183 LOAD_IN_X2(temp1, temp2, 8, 10) in ITransformOne()
185 temp10, temp8, temp9, temp7, temp1, temp2, temp5, temp6, in ITransformOne()
190 ADD_SUB_HALVES(temp1, temp2, temp3, temp8) in ITransformOne()
203 SRA_16(temp9, temp10, temp11, temp12, temp1, temp2, temp5, temp6) in ITransformOne()
204 INSERT_HALF_X2(temp1, temp6, temp5, temp2) in ITransformOne()
[all …]
Ddec_mips_dsp_r2.c27 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9, temp10; in TransformDC() local
30 LOAD_WITH_OFFSET_X4(temp1, temp2, temp3, temp4, dst, in TransformDC()
38 CONVERT_2_BYTES_TO_HALF(temp6, temp7, temp8, temp9, temp10, temp1, temp2, in TransformDC()
39 temp3, temp1, temp2, temp3, temp4) in TransformDC()
40 STORE_SAT_SUM_X2(temp6, temp7, temp8, temp9, temp10, temp1, temp2, temp3, in TransformDC()
56 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; in TransformAC3() local
63 ADD_SUB_HALVES(temp2, temp3, temp1, c4) in TransformAC3()
65 SHIFT_R_SUM_X2(temp1, temp6, temp7, temp8, temp2, temp9, temp10, temp4, in TransformAC3()
66 temp2, temp2, temp3, temp3, temp4, temp5, temp4, temp5) in TransformAC3()
73 PACK_2_HALVES_TO_WORD(temp12, temp18, temp7, temp6, temp1, temp8, temp2, in TransformAC3()
[all …]
Dlossless_mips_dsp_r2.c96 int temp0, temp1, temp2, temp3, temp4, temp5; in MAP_COLOR_FUNCS() local
111 : [temp0]"=r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in MAP_COLOR_FUNCS()
116 return temp2; in MAP_COLOR_FUNCS()
121 int temp0, temp1, temp2, temp3, temp4, temp5; in ClampedAddSubtractHalf() local
141 : [temp0]"=r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in ClampedAddSubtractHalf()
150 int temp0, temp1, temp2, temp3, temp4, temp5; in Select() local
165 : [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), in Select()
233 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; in AddGreenToBlueAndRed() local
280 [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), in AddGreenToBlueAndRed()
291 int temp0, temp1, temp2, temp3, temp4, temp5; in TransformColorInverse() local
[all …]
Dlossless_enc_mips_dsp_r2.c23 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; in SubtractGreenFromBlueAndRed() local
68 [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), in SubtractGreenFromBlueAndRed()
83 int temp0, temp1, temp2, temp3, temp4, temp5; in TransformColor() local
139 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in TransformColor()
186 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; in CollectColorBlueTransforms() local
203 [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), in CollectColorBlueTransforms()
208 ++histo[(uint8_t)(temp2 >> 16)]; in CollectColorBlueTransforms()
209 ++histo[(uint8_t)temp2]; in CollectColorBlueTransforms()
234 int temp0, temp1, temp2, temp3, temp4; in CollectColorRedTransforms() local
246 [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), [temp4]"=&r"(temp4) in CollectColorRedTransforms()
[all …]
Drescaler_mips32.c38 int temp1, temp2, temp3; in ImportRowShrink() local
73 [temp2]"=&r"(temp2), [temp1]"=&r"(temp1) in ImportRowShrink()
97 int temp1, temp2, temp3, temp4; in ImportRowExpand() local
133 [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), in ImportRowExpand()
153 const int temp2 = (int)wrk->fy_scale; in ExportRowExpand() local
176 : [temp2]"r"(temp2), [temp6]"r"(temp6) in ExportRowExpand()
204 : [temp2]"r"(temp2), [temp6]"r"(temp6), [A]"r"(A), [B]"r"(B) in ExportRowExpand()
217 const int temp2 = (int)wrk->fxy_scale; in ExportRowShrink() local
248 : [temp2]"r"(temp2), [yscale]"r"(yscale), [temp6]"r"(temp6) in ExportRowShrink()
269 : [temp2]"r"(temp2), [temp6]"r"(temp6) in ExportRowShrink()
Denc_mips32.c118 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; in ITransformOne() local
125 VERTICAL_PASS(0, 16, 8, 24, temp4, temp0, temp1, temp2, temp3) in ITransformOne()
132 HORIZONTAL_PASS(2, temp2, temp6, temp10, temp14) in ITransformOne()
135 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in ITransformOne()
192 int temp0, temp1, temp2, temp3, temp4, temp5; in QuantizeBlock() local
223 [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), in QuantizeBlock()
367 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in Disto4x4() local
386 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in Disto4x4()
482 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in FTransform() local
491 HORIZONTAL_PASS(0, temp0, temp1, temp2, temp3) in FTransform()
[all …]
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
Dp6.cpp39 template<class A, class B> B temp2(A);
42 apply(0, &temp2); in test3()
43 apply(0, &temp2<>); in test3()
44 apply(0, &temp2<int>); in test3()
47 apply(0, &temp2<long>); // expected-error {{no matching function for call to 'apply'}} in test3()
80 template<class A, class B> B temp2(A);
85 invoke(&temp2); // expected-error {{no matching function for call to 'invoke'}} in test3()
86 invoke(&temp2<>); // expected-error {{no matching function for call to 'invoke'}} in test3()
87 invoke(&temp2<int>); // expected-error {{no matching function for call to 'invoke'}} in test3()
90 invoke(&temp2<int, void>); in test3()
[all …]
/external/eigen/blas/f2c/
Dchpmv.c29 complex temp1, temp2; in chpmv_() local
250 temp2.r = 0.f, temp2.i = 0.f; in chpmv_()
266 q__1.r = temp2.r + q__2.r, q__1.i = temp2.i + q__2.i; in chpmv_()
267 temp2.r = q__1.r, temp2.i = q__1.i; in chpmv_()
277 q__4.r = alpha->r * temp2.r - alpha->i * temp2.i, q__4.i = in chpmv_()
278 alpha->r * temp2.i + alpha->i * temp2.r; in chpmv_()
293 temp2.r = 0.f, temp2.i = 0.f; in chpmv_()
310 q__1.r = temp2.r + q__2.r, q__1.i = temp2.i + q__2.i; in chpmv_()
311 temp2.r = q__1.r, temp2.i = q__1.i; in chpmv_()
322 q__4.r = alpha->r * temp2.r - alpha->i * temp2.i, q__4.i = in chpmv_()
[all …]
Dzhpmv.c29 doublecomplex temp1, temp2; in zhpmv_() local
250 temp2.r = 0., temp2.i = 0.; in zhpmv_()
266 z__1.r = temp2.r + z__2.r, z__1.i = temp2.i + z__2.i; in zhpmv_()
267 temp2.r = z__1.r, temp2.i = z__1.i; in zhpmv_()
277 z__4.r = alpha->r * temp2.r - alpha->i * temp2.i, z__4.i = in zhpmv_()
278 alpha->r * temp2.i + alpha->i * temp2.r; in zhpmv_()
293 temp2.r = 0., temp2.i = 0.; in zhpmv_()
310 z__1.r = temp2.r + z__2.r, z__1.i = temp2.i + z__2.i; in zhpmv_()
311 temp2.r = z__1.r, temp2.i = z__1.i; in zhpmv_()
322 z__4.r = alpha->r * temp2.r - alpha->i * temp2.i, z__4.i = in zhpmv_()
[all …]
Dchbmv.c29 complex temp1, temp2; in chbmv_() local
291 temp2.r = 0.f, temp2.i = 0.f; in chbmv_()
309 q__1.r = temp2.r + q__2.r, q__1.i = temp2.i + q__2.i; in chbmv_()
310 temp2.r = q__1.r, temp2.i = q__1.i; in chbmv_()
319 q__4.r = alpha->r * temp2.r - alpha->i * temp2.i, q__4.i = in chbmv_()
320 alpha->r * temp2.i + alpha->i * temp2.r; in chbmv_()
334 temp2.r = 0.f, temp2.i = 0.f; in chbmv_()
354 q__1.r = temp2.r + q__2.r, q__1.i = temp2.i + q__2.i; in chbmv_()
355 temp2.r = q__1.r, temp2.i = q__1.i; in chbmv_()
366 q__4.r = alpha->r * temp2.r - alpha->i * temp2.i, q__4.i = in chbmv_()
[all …]
Dzhbmv.c30 doublecomplex temp1, temp2; in zhbmv_() local
292 temp2.r = 0., temp2.i = 0.; in zhbmv_()
310 z__1.r = temp2.r + z__2.r, z__1.i = temp2.i + z__2.i; in zhbmv_()
311 temp2.r = z__1.r, temp2.i = z__1.i; in zhbmv_()
320 z__4.r = alpha->r * temp2.r - alpha->i * temp2.i, z__4.i = in zhbmv_()
321 alpha->r * temp2.i + alpha->i * temp2.r; in zhbmv_()
335 temp2.r = 0., temp2.i = 0.; in zhbmv_()
355 z__1.r = temp2.r + z__2.r, z__1.i = temp2.i + z__2.i; in zhbmv_()
356 temp2.r = z__1.r, temp2.i = z__1.i; in zhbmv_()
367 z__4.r = alpha->r * temp2.r - alpha->i * temp2.i, z__4.i = in zhbmv_()
[all …]
Ddspmv.c24 doublereal temp1, temp2; in dspmv_() local
225 temp2 = 0.; in dspmv_()
230 temp2 += ap[k] * x[i__]; in dspmv_()
234 y[j] = y[j] + temp1 * ap[kk + j - 1] + *alpha * temp2; in dspmv_()
244 temp2 = 0.; in dspmv_()
250 temp2 += ap[k] * x[ix]; in dspmv_()
255 y[jy] = y[jy] + temp1 * ap[kk + j - 1] + *alpha * temp2; in dspmv_()
270 temp2 = 0.; in dspmv_()
276 temp2 += ap[k] * x[i__]; in dspmv_()
280 y[j] += *alpha * temp2; in dspmv_()
[all …]
Dsspmv.c24 real temp1, temp2; in sspmv_() local
225 temp2 = 0.f; in sspmv_()
230 temp2 += ap[k] * x[i__]; in sspmv_()
234 y[j] = y[j] + temp1 * ap[kk + j - 1] + *alpha * temp2; in sspmv_()
244 temp2 = 0.f; in sspmv_()
250 temp2 += ap[k] * x[ix]; in sspmv_()
255 y[jy] = y[jy] + temp1 * ap[kk + j - 1] + *alpha * temp2; in sspmv_()
270 temp2 = 0.f; in sspmv_()
276 temp2 += ap[k] * x[i__]; in sspmv_()
280 y[j] += *alpha * temp2; in sspmv_()
[all …]
Ddsbmv.c24 doublereal temp1, temp2; in dsbmv_() local
266 temp2 = 0.; in dsbmv_()
273 temp2 += a[l + i__ + j * a_dim1] * x[i__]; in dsbmv_()
276 y[j] = y[j] + temp1 * a[kplus1 + j * a_dim1] + *alpha * temp2; in dsbmv_()
285 temp2 = 0.; in dsbmv_()
294 temp2 += a[l + i__ + j * a_dim1] * x[ix]; in dsbmv_()
300 temp2; in dsbmv_()
318 temp2 = 0.; in dsbmv_()
326 temp2 += a[l + i__ + j * a_dim1] * x[i__]; in dsbmv_()
329 y[j] += *alpha * temp2; in dsbmv_()
[all …]
Dssbmv.c24 real temp1, temp2; in ssbmv_() local
268 temp2 = 0.f; in ssbmv_()
275 temp2 += a[l + i__ + j * a_dim1] * x[i__]; in ssbmv_()
278 y[j] = y[j] + temp1 * a[kplus1 + j * a_dim1] + *alpha * temp2; in ssbmv_()
287 temp2 = 0.f; in ssbmv_()
296 temp2 += a[l + i__ + j * a_dim1] * x[ix]; in ssbmv_()
302 temp2; in ssbmv_()
320 temp2 = 0.f; in ssbmv_()
328 temp2 += a[l + i__ + j * a_dim1] * x[i__]; in ssbmv_()
331 y[j] += *alpha * temp2; in ssbmv_()
[all …]
/external/libvpx/libvpx/vpx_dsp/mips/
Ditrans32_cols_dspr2.c31 int temp0, temp1, temp2, temp3; in vpx_idct32_cols_add_blk_dspr2() local
105 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), in vpx_idct32_cols_add_blk_dspr2()
165 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), in vpx_idct32_cols_add_blk_dspr2()
225 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), in vpx_idct32_cols_add_blk_dspr2()
281 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), in vpx_idct32_cols_add_blk_dspr2()
337 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), [step2_8] "=&r"(step2_8), in vpx_idct32_cols_add_blk_dspr2()
393 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), in vpx_idct32_cols_add_blk_dspr2()
620 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), [step1_0] "=&r"(step1_0), in vpx_idct32_cols_add_blk_dspr2()
678 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), [step1_4] "=&r"(step1_4), in vpx_idct32_cols_add_blk_dspr2()
769 : [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), [temp2] "=&r"(temp2), in vpx_idct32_cols_add_blk_dspr2()
[all …]
Ditrans32_dspr2.c35 int temp0, temp1, temp2, temp3; in idct32_rows_dspr2() local
149 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), in idct32_rows_dspr2()
209 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), in idct32_rows_dspr2()
269 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), in idct32_rows_dspr2()
325 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), in idct32_rows_dspr2()
381 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), [step2_8] "=&r"(step2_8), in idct32_rows_dspr2()
437 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), in idct32_rows_dspr2()
664 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), [step1_0] "=&r"(step1_0), in idct32_rows_dspr2()
722 [temp2] "=&r"(temp2), [temp3] "=&r"(temp3), [step1_4] "=&r"(step1_4), in idct32_rows_dspr2()
813 : [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), [temp2] "=&r"(temp2), in idct32_rows_dspr2()
[all …]
/external/libvpx/libvpx/vpx_dsp/
Dinv_txfm.c134 tran_high_t temp1, temp2; in idct4_c() local
138 temp2 = (input[0] - input[2]) * cospi_16_64; in idct4_c()
140 step[1] = WRAPLOW(dct_const_round_shift(temp2)); in idct4_c()
142 temp2 = input[1] * cospi_8_64 + input[3] * cospi_24_64; in idct4_c()
144 step[3] = WRAPLOW(dct_const_round_shift(temp2)); in idct4_c()
271 tran_high_t temp1, temp2; in idct8_c() local
279 temp2 = input[1] * cospi_4_64 + input[7] * cospi_28_64; in idct8_c()
281 step1[7] = WRAPLOW(dct_const_round_shift(temp2)); in idct8_c()
283 temp2 = input[5] * cospi_20_64 + input[3] * cospi_12_64; in idct8_c()
285 step1[6] = WRAPLOW(dct_const_round_shift(temp2)); in idct8_c()
[all …]
/external/libvpx/libvpx/vp8/common/mips/dspr2/
Didctllm_dspr2.c45 int temp1, temp2; in vp8_short_idct4x4llm_dspr2() local
60 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2()
61 c1 = temp1 - temp2; in vp8_short_idct4x4llm_dspr2()
64 temp2 = (ip[12] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
65 d1 = temp1 + temp2; in vp8_short_idct4x4llm_dspr2()
92 temp2 = ip[14] + ((ip[14] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2()
93 c1 = temp1 - temp2; in vp8_short_idct4x4llm_dspr2()
96 temp2 = (ip[14] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
97 d1 = temp1 + temp2; in vp8_short_idct4x4llm_dspr2()
130 temp2 = ip[3] + ((ip[3] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2()
[all …]
/external/libvpx/libvpx/vpx_dsp/x86/
Dhighbd_idct16x16_add_sse2.c23 __m128i min_input, max_input, temp1, temp2, sign_bits; in vpx_highbd_idct16x16_256_add_sse2() local
33 temp2 = _mm_loadu_si128((const __m128i *)(input + 16 * i + 4)); in vpx_highbd_idct16x16_256_add_sse2()
34 inptr[i] = _mm_packs_epi32(temp1, temp2); in vpx_highbd_idct16x16_256_add_sse2()
36 temp2 = _mm_loadu_si128((const __m128i *)(input + 16 * i + 12)); in vpx_highbd_idct16x16_256_add_sse2()
37 inptr[i + 16] = _mm_packs_epi32(temp1, temp2); in vpx_highbd_idct16x16_256_add_sse2()
73 temp2 = _mm_unpackhi_epi16(inptr[i], sign_bits); in vpx_highbd_idct16x16_256_add_sse2()
75 _mm_storeu_si128((__m128i *)(outptr + 4 * (i * 4 + 1)), temp2); in vpx_highbd_idct16x16_256_add_sse2()
78 temp2 = _mm_unpackhi_epi16(inptr[i + 16], sign_bits); in vpx_highbd_idct16x16_256_add_sse2()
80 _mm_storeu_si128((__m128i *)(outptr + 4 * (i * 4 + 3)), temp2); in vpx_highbd_idct16x16_256_add_sse2()
135 __m128i min_input, max_input, temp1, temp2, sign_bits; in vpx_highbd_idct16x16_10_add_sse2() local
[all …]

123456789