Home
last modified time | relevance | path

Searched refs:temp1 (Results 1 – 25 of 221) 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
122 temp1 = _mm_unpacklo_epi8(line1, line2); 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()
146 temp1 = _mm_unpacklo_epi8(line1, line2); 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()
156 temp1 = _mm_unpacklo_epi32(line1, line3); in ih264_deblk_luma_vert_bs4_ssse3()
161 p3_16x8 = _mm_unpacklo_epi64(p1_8x16, temp1); in ih264_deblk_luma_vert_bs4_ssse3()
162 p2_16x8 = _mm_unpackhi_epi64(p1_8x16, temp1); in ih264_deblk_luma_vert_bs4_ssse3()
[all …]
Dih264_ihadamard_scaling_sse42.c98 __m128i temp0, temp1, temp2, temp3; in ih264_ihadamard_scaling_4x4_sse42() local
127 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //a2 b2 a3 b3 in ih264_ihadamard_scaling_4x4_sse42()
131 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //a2 b2 c2 d2 in ih264_ihadamard_scaling_4x4_sse42()
132 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //a3 b3 c3 d3 in ih264_ihadamard_scaling_4x4_sse42()
135 temp1 = _mm_add_epi32(src_r1, src_r2); in ih264_ihadamard_scaling_4x4_sse42()
139 src_r0 = _mm_add_epi32(temp0, temp1); in ih264_ihadamard_scaling_4x4_sse42()
141 src_r2 = _mm_sub_epi32(temp0, temp1); in ih264_ihadamard_scaling_4x4_sse42()
156 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //c0 c1 d0 d1 in ih264_ihadamard_scaling_4x4_sse42()
160 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //c0 c1 c2 c3 in ih264_ihadamard_scaling_4x4_sse42()
161 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //d0 d1 d2 d3 in ih264_ihadamard_scaling_4x4_sse42()
[all …]
Dih264_resi_trans_quant_sse42.c120 __m128i temp0, temp1, temp2, temp3; in ih264_resi_trans_quant_4x4_sse42() local
167 temp1 = _mm_unpacklo_epi32(temp0, temp2); //a0 b0 c0 d0 a1 b1 c1 d1 in ih264_resi_trans_quant_4x4_sse42()
170 src_r0 = _mm_unpacklo_epi64(temp1, zero_8x16b); //a0 b0 c0 d0 in ih264_resi_trans_quant_4x4_sse42()
171 src_r1 = _mm_unpackhi_epi64(temp1, zero_8x16b); //a1 b1 c1 d1 in ih264_resi_trans_quant_4x4_sse42()
179 temp1 = _mm_add_epi16(src_r1, src_r2); in ih264_resi_trans_quant_4x4_sse42()
186 src_r0 = _mm_add_epi16(temp0, temp1); in ih264_resi_trans_quant_4x4_sse42()
191 src_r2 = _mm_sub_epi16(temp0, temp1); 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()
208 src_r0 = _mm_unpacklo_epi64(temp1, zero_8x16b); //a0 a1 a2 a3 in ih264_resi_trans_quant_4x4_sse42()
209 src_r1 = _mm_unpackhi_epi64(temp1, zero_8x16b); //b0 b1 b2 b3 in ih264_resi_trans_quant_4x4_sse42()
[all …]
Dih264_deblk_chroma_ssse3.c105 __m128i temp1, temp2, temp3, temp4; in ih264_deblk_chroma_vert_bs4_ssse3() local
124 temp1 = _mm_unpacklo_epi16(linea, lineb); in ih264_deblk_chroma_vert_bs4_ssse3()
129 p1_uv_8x16 = _mm_unpacklo_epi32(temp1, temp2); in ih264_deblk_chroma_vert_bs4_ssse3()
131 q0_uv_8x16 = _mm_unpackhi_epi32(temp1, temp2); in ih264_deblk_chroma_vert_bs4_ssse3()
159 temp1 = _mm_slli_epi16(p1_uv_8x16, 1); in ih264_deblk_chroma_vert_bs4_ssse3()
161 temp1 = _mm_add_epi16(temp1, _mm_set1_epi16(2)); in ih264_deblk_chroma_vert_bs4_ssse3()
162 temp1 = _mm_add_epi16(temp1, temp2); in ih264_deblk_chroma_vert_bs4_ssse3()
163 p0_uv_8x16_1 = _mm_srai_epi16(temp1, 2); in ih264_deblk_chroma_vert_bs4_ssse3()
165 temp1 = _mm_slli_epi16(q1_uv_8x16, 1); in ih264_deblk_chroma_vert_bs4_ssse3()
167 temp1 = _mm_add_epi16(temp1, _mm_set1_epi16(2)); in ih264_deblk_chroma_vert_bs4_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
137temp1 = _mm_mullo_epi16(scalemat_r2_r3, dequant_r2_r3); //b00*q00 b01*q01 b02*q02 b03*q03 b10*q10 … in ih264_iquant_itrans_recon_4x4_sse42()
141 …temp6 = _mm_unpacklo_epi16(temp1, zero_8x16b); // b00*q00 0 b01*q01 0 b02*q02 0 b03*q03 0 -- 16 bi… in ih264_iquant_itrans_recon_4x4_sse42()
142 …temp7 = _mm_unpackhi_epi16(temp1, zero_8x16b); // b10*q10 0 b11*q11 0 b12*q12 0 b13*q13 0 -- 16 bi… in ih264_iquant_itrans_recon_4x4_sse42()
183 temp1 = _mm_unpacklo_epi32(resq_r0, resq_r1); //a0 b0 a1 b1 in ih264_iquant_itrans_recon_4x4_sse42()
187 resq_r0 = _mm_unpacklo_epi64(temp1, temp3); //a0 b0 c0 d0 in ih264_iquant_itrans_recon_4x4_sse42()
188 resq_r1 = _mm_unpackhi_epi64(temp1, temp3); //a1 b1 c1 d1 in ih264_iquant_itrans_recon_4x4_sse42()
196 temp1 = _mm_sub_epi32(resq_r0, resq_r2); 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()
[all …]
Dih264_ihadamard_scaling_ssse3.c98 __m128i temp0, temp1, temp2, temp3; in ih264_ihadamard_scaling_4x4_ssse3() local
129 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //a2 b2 a3 b3 in ih264_ihadamard_scaling_4x4_ssse3()
133 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //a2 b2 c2 d2 in ih264_ihadamard_scaling_4x4_ssse3()
134 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //a3 b3 c3 d3 in ih264_ihadamard_scaling_4x4_ssse3()
137 temp1 = _mm_add_epi32(src_r1, src_r2); in ih264_ihadamard_scaling_4x4_ssse3()
141 src_r0 = _mm_add_epi32(temp0, temp1); in ih264_ihadamard_scaling_4x4_ssse3()
143 src_r2 = _mm_sub_epi32(temp0, temp1); in ih264_ihadamard_scaling_4x4_ssse3()
158 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //c0 c1 d0 d1 in ih264_ihadamard_scaling_4x4_ssse3()
162 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //c0 c1 c2 c3 in ih264_ihadamard_scaling_4x4_ssse3()
163 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //d0 d1 d2 d3 in ih264_ihadamard_scaling_4x4_ssse3()
[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()
160 VERTICAL_PASS(2, 10, 18, 26, temp1, temp5, temp9, temp13) 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()
73 PACK_2_HALVES_TO_WORD(temp12, temp18, temp7, temp6, temp1, temp8, temp2, in TransformAC3()
76 temp17, temp12, temp18, temp1, temp8, temp2, temp4, in TransformAC3()
[all …]
Dlossless_mips_dsp_r2.c95 int temp0, temp1, temp2, temp3, temp4, temp5; in MAP_COLOR_FUNCS() local
110 : [temp0]"=r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in MAP_COLOR_FUNCS()
120 int temp0, temp1, temp2, temp3, temp4, temp5; in ClampedAddSubtractHalf() local
140 : [temp0]"=r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in ClampedAddSubtractHalf()
145 return temp1; in ClampedAddSubtractHalf()
149 int temp0, temp1, temp2, temp3, temp4, temp5; in Select() local
164 : [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), in Select()
231 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; in AddGreenToBlueAndRed() local
275 : [data]"+&r"(data), [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), in AddGreenToBlueAndRed()
285 int temp0, temp1, temp2, temp3, temp4, temp5; in TransformColorInverse() local
[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
132 : [src1]"+r"(src1), [accum]"=&r"(accum), [temp1]"=&r"(temp1), in ImportRowExpand()
152 int temp0, temp1, temp3, temp4, temp5, loop_end; in ExportRowExpand() local
173 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp3]"=&r"(temp3), in ExportRowExpand()
201 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp3]"=&r"(temp3), in ExportRowExpand()
216 int temp0, temp1, temp3, temp4, temp5, loop_end; in ExportRowShrink() local
245 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp3]"=&r"(temp3), in ExportRowShrink()
266 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp3]"=&r"(temp3), 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()
131 HORIZONTAL_PASS(1, temp1, temp5, temp9, temp13) 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
222 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), 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 …]
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
202 : [p_argb]"+&r"(p_argb), [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), in CollectColorBlueTransforms()
234 int temp0, temp1, temp2, temp3, temp4; in CollectColorRedTransforms() local
245 : [p_argb]"+&r"(p_argb), [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), in CollectColorRedTransforms()
/external/libvpx/libvpx/vp8/encoder/mips/msa/
Ddct_msa.c72 v8i16 temp0, temp1; in vp8_short_fdct4x4_msa() local
81 BUTTERFLY_4(in0, in1, in2, in3, temp0, temp1, in1, in3); in vp8_short_fdct4x4_msa()
82 SLLI_4V(temp0, temp1, in1, in3, 3); in vp8_short_fdct4x4_msa()
83 in0 = temp0 + temp1; in vp8_short_fdct4x4_msa()
84 in2 = temp0 - temp1; in vp8_short_fdct4x4_msa()
97 BUTTERFLY_4(in0, in1, in2, in3, temp0, temp1, in1, in3); in vp8_short_fdct4x4_msa()
98 in0 = temp0 + temp1 + 7; in vp8_short_fdct4x4_msa()
99 in2 = temp0 - temp1 + 7; in vp8_short_fdct4x4_msa()
103 temp1 = RET_1_IF_NZERO_H(in3); in vp8_short_fdct4x4_msa()
104 ILVR_H2_SH(zero, temp1, in3, in1, temp1, temp0); in vp8_short_fdct4x4_msa()
[all …]
/external/libvpx/libvpx/vpx_dsp/
Dinv_txfm.c96 tran_high_t temp1, temp2; in idct4_c() local
98 temp1 = (input[0] + input[2]) * cospi_16_64; in idct4_c()
100 step[0] = WRAPLOW(dct_const_round_shift(temp1), 8); in idct4_c()
102 temp1 = input[1] * cospi_24_64 - input[3] * cospi_8_64; in idct4_c()
104 step[2] = WRAPLOW(dct_const_round_shift(temp1), 8); in idct4_c()
158 tran_high_t temp1, temp2; in idct8_c() local
164 temp1 = input[1] * cospi_28_64 - input[7] * cospi_4_64; in idct8_c()
166 step1[4] = WRAPLOW(dct_const_round_shift(temp1), 8); in idct8_c()
168 temp1 = input[5] * cospi_12_64 - input[3] * cospi_20_64; in idct8_c()
170 step1[5] = WRAPLOW(dct_const_round_shift(temp1), 8); in idct8_c()
[all …]
/external/libvpx/libvpx/vpx_dsp/mips/
Ditrans32_cols_dspr2.c32 int temp0, temp1, temp2, temp3; in vpx_idct32_cols_add_blk_dspr2() local
105 [load4] "=&r" (load4), [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vpx_idct32_cols_add_blk_dspr2()
166 [load4] "=&r" (load4), [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vpx_idct32_cols_add_blk_dspr2()
227 [load4] "=&r" (load4), [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vpx_idct32_cols_add_blk_dspr2()
284 [load4] "=&r" (load4), [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vpx_idct32_cols_add_blk_dspr2()
341 [load4] "=&r" (load4), [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vpx_idct32_cols_add_blk_dspr2()
398 [load4] "=&r" (load4), [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vpx_idct32_cols_add_blk_dspr2()
443 : [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vpx_idct32_cols_add_blk_dspr2()
594 [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vpx_idct32_cols_add_blk_dspr2()
654 [temp0] "=&r" (temp0), [temp1] "=&r" (temp1), in vpx_idct32_cols_add_blk_dspr2()
[all …]
/external/libvpx/libvpx/test/
Ddct16x16_test.cc62 double temp1, temp2; in butterfly_16x16_dct_1d() local
92 temp1 = step[ 8] * C7; in butterfly_16x16_dct_1d()
94 output[ 8] = temp1 + temp2; in butterfly_16x16_dct_1d()
96 temp1 = step[ 9] * C11; in butterfly_16x16_dct_1d()
98 output[ 9] = temp1 - temp2; in butterfly_16x16_dct_1d()
100 temp1 = step[10] * C3; in butterfly_16x16_dct_1d()
102 output[10] = temp1 + temp2; in butterfly_16x16_dct_1d()
104 temp1 = step[11] * C15; in butterfly_16x16_dct_1d()
106 output[11] = temp1 - temp2; in butterfly_16x16_dct_1d()
108 temp1 = step[11] * C1; in butterfly_16x16_dct_1d()
[all …]
/external/libmpeg2/common/x86/
Dimpeg2_idct_recon_sse42_intr.c1854 __m128i temp0, temp1; in impeg2_idct_recon_dc_mismatch_sse42() local
1874 temp1 = _mm_cvtepi16_epi32(mismatch_stg2_additive); in impeg2_idct_recon_dc_mismatch_sse42()
1879 temp1 = _mm_add_epi32(temp1, value_4x32b); in impeg2_idct_recon_dc_mismatch_sse42()
1881 temp1 = _mm_add_epi32(temp1, round_stg2); in impeg2_idct_recon_dc_mismatch_sse42()
1884 temp1 = _mm_srai_epi32(temp1, IDCT_STG2_SHIFT); in impeg2_idct_recon_dc_mismatch_sse42()
1886 temp1 = _mm_add_epi32(temp1, pred_half1); in impeg2_idct_recon_dc_mismatch_sse42()
1888 temp0 = _mm_packus_epi32(temp0, temp1); in impeg2_idct_recon_dc_mismatch_sse42()
1889 temp0 = _mm_packus_epi16(temp0, temp1); in impeg2_idct_recon_dc_mismatch_sse42()
1900 temp1 = _mm_cvtepi16_epi32(mismatch_stg2_additive); in impeg2_idct_recon_dc_mismatch_sse42()
1905 temp1 = _mm_add_epi32(temp1, value_4x32b); in impeg2_idct_recon_dc_mismatch_sse42()
[all …]
/external/llvm/test/Transforms/InstCombine/
Dstrncmp-1.ll22 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10)
23 ret i32 %temp1
34 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10)
35 ret i32 %temp1
45 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10)
46 ret i32 %temp1
55 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10)
56 ret i32 %temp1
65 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 4)
66 ret i32 %temp1
[all …]
/external/eigen/blas/f2c/
Dchpmv.c29 complex temp1, temp2; in chpmv_() local
249 temp1.r = q__1.r, temp1.i = q__1.i; in chpmv_()
257 q__2.r = temp1.r * ap[i__5].r - temp1.i * ap[i__5].i, in chpmv_()
258 q__2.i = temp1.r * ap[i__5].i + temp1.i * ap[i__5] in chpmv_()
275 q__3.r = r__1 * temp1.r, q__3.i = r__1 * temp1.i; in chpmv_()
292 temp1.r = q__1.r, temp1.i = q__1.i; in chpmv_()
301 q__2.r = temp1.r * ap[i__5].r - temp1.i * ap[i__5].i, in chpmv_()
302 q__2.i = temp1.r * ap[i__5].i + temp1.i * ap[i__5] in chpmv_()
320 q__3.r = r__1 * temp1.r, q__3.i = r__1 * temp1.i; in chpmv_()
342 temp1.r = q__1.r, temp1.i = q__1.i; in chpmv_()
[all …]
Dzhpmv.c29 doublecomplex temp1, temp2; in zhpmv_() local
249 temp1.r = z__1.r, temp1.i = z__1.i; in zhpmv_()
257 z__2.r = temp1.r * ap[i__5].r - temp1.i * ap[i__5].i, in zhpmv_()
258 z__2.i = temp1.r * ap[i__5].i + temp1.i * ap[i__5] in zhpmv_()
275 z__3.r = d__1 * temp1.r, z__3.i = d__1 * temp1.i; in zhpmv_()
292 temp1.r = z__1.r, temp1.i = z__1.i; in zhpmv_()
301 z__2.r = temp1.r * ap[i__5].r - temp1.i * ap[i__5].i, in zhpmv_()
302 z__2.i = temp1.r * ap[i__5].i + temp1.i * ap[i__5] in zhpmv_()
320 z__3.r = d__1 * temp1.r, z__3.i = d__1 * temp1.i; in zhpmv_()
342 temp1.r = z__1.r, temp1.i = z__1.i; in zhpmv_()
[all …]
Dsspmv.c24 real temp1, temp2; in sspmv_() local
224 temp1 = *alpha * x[j]; in sspmv_()
229 y[i__] += temp1 * ap[k]; in sspmv_()
234 y[j] = y[j] + temp1 * ap[kk + j - 1] + *alpha * temp2; in sspmv_()
243 temp1 = *alpha * x[jx]; in sspmv_()
249 y[iy] += temp1 * ap[k]; in sspmv_()
255 y[jy] = y[jy] + temp1 * ap[kk + j - 1] + *alpha * temp2; in sspmv_()
269 temp1 = *alpha * x[j]; in sspmv_()
271 y[j] += temp1 * ap[kk]; in sspmv_()
275 y[i__] += temp1 * ap[k]; in sspmv_()
[all …]
Ddspmv.c24 doublereal temp1, temp2; in dspmv_() local
224 temp1 = *alpha * x[j]; in dspmv_()
229 y[i__] += temp1 * ap[k]; in dspmv_()
234 y[j] = y[j] + temp1 * ap[kk + j - 1] + *alpha * temp2; in dspmv_()
243 temp1 = *alpha * x[jx]; in dspmv_()
249 y[iy] += temp1 * ap[k]; in dspmv_()
255 y[jy] = y[jy] + temp1 * ap[kk + j - 1] + *alpha * temp2; in dspmv_()
269 temp1 = *alpha * x[j]; in dspmv_()
271 y[j] += temp1 * ap[kk]; in dspmv_()
275 y[i__] += temp1 * ap[k]; in dspmv_()
[all …]
Dzhbmv.c30 doublecomplex temp1, temp2; in zhbmv_() local
291 temp1.r = z__1.r, temp1.i = z__1.i; in zhbmv_()
301 z__2.r = temp1.r * a[i__5].r - temp1.i * a[i__5].i, in zhbmv_()
302 z__2.i = temp1.r * a[i__5].i + temp1.i * a[i__5] in zhbmv_()
318 z__3.r = d__1 * temp1.r, z__3.i = d__1 * temp1.i; in zhbmv_()
334 temp1.r = z__1.r, temp1.i = z__1.i; in zhbmv_()
346 z__2.r = temp1.r * a[i__5].r - temp1.i * a[i__5].i, in zhbmv_()
347 z__2.i = temp1.r * a[i__5].i + temp1.i * a[i__5] in zhbmv_()
365 z__3.r = d__1 * temp1.r, z__3.i = d__1 * temp1.i; in zhbmv_()
390 temp1.r = z__1.r, temp1.i = z__1.i; in zhbmv_()
[all …]
Dchbmv.c29 complex temp1, temp2; in chbmv_() local
290 temp1.r = q__1.r, temp1.i = q__1.i; in chbmv_()
300 q__2.r = temp1.r * a[i__5].r - temp1.i * a[i__5].i, in chbmv_()
301 q__2.i = temp1.r * a[i__5].i + temp1.i * a[i__5] in chbmv_()
317 q__3.r = r__1 * temp1.r, q__3.i = r__1 * temp1.i; in chbmv_()
333 temp1.r = q__1.r, temp1.i = q__1.i; in chbmv_()
345 q__2.r = temp1.r * a[i__5].r - temp1.i * a[i__5].i, in chbmv_()
346 q__2.i = temp1.r * a[i__5].i + temp1.i * a[i__5] in chbmv_()
364 q__3.r = r__1 * temp1.r, q__3.i = r__1 * temp1.i; in chbmv_()
389 temp1.r = q__1.r, temp1.i = q__1.i; in chbmv_()
[all …]
/external/libvpx/libvpx/vp8/common/mips/dspr2/
Didctllm_dspr2.c51 int temp1, temp2; in vp8_short_idct4x4llm_dspr2() local
65 temp1 = (ip[4] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
67 c1 = temp1 - temp2; in vp8_short_idct4x4llm_dspr2()
69 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2()
71 d1 = temp1 + temp2; in vp8_short_idct4x4llm_dspr2()
97 temp1 = (ip[6] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
99 c1 = temp1 - temp2; in vp8_short_idct4x4llm_dspr2()
101 temp1 = ip[6] + ((ip[6] * cospi8sqrt2minus1) >> 16); in vp8_short_idct4x4llm_dspr2()
103 d1 = temp1 + temp2; in vp8_short_idct4x4llm_dspr2()
135 temp1 = (ip[1] * sinpi8sqrt2) >> 16; in vp8_short_idct4x4llm_dspr2()
[all …]

123456789