/external/libvpx/libvpx/vpx_dsp/ppc/ |
D | fdct32x32_vsx.c | 229 int16x8_t temp2[32]; // Hold stages: 3, 6 in fdct32_vsx() local 292 temp2[0] = vec_add(temp1[0], temp1[7]); in fdct32_vsx() 293 temp2[1] = vec_add(temp1[1], temp1[6]); in fdct32_vsx() 294 temp2[2] = vec_add(temp1[2], temp1[5]); in fdct32_vsx() 295 temp2[3] = vec_add(temp1[3], temp1[4]); in fdct32_vsx() 296 temp2[5] = vec_sub(temp1[2], temp1[5]); in fdct32_vsx() 297 temp2[6] = vec_sub(temp1[1], temp1[6]); in fdct32_vsx() 298 temp2[8] = temp1[8]; in fdct32_vsx() 299 temp2[9] = temp1[9]; in fdct32_vsx() 301 single_butterfly(temp1[13], temp1[10], &temp2[13], &temp2[10]); in fdct32_vsx() [all …]
|
/external/libavc/common/x86/ |
D | ih264_deblk_luma_ssse3.c | 104 __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 …]
|
D | ih264_resi_trans_quant_sse42.c | 120 __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 …]
|
D | ih264_ihadamard_scaling_ssse3.c | 98 __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 …]
|
D | ih264_iquant_itrans_recon_sse42.c | 119 __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 …]
|
D | ih264_ihadamard_scaling_sse42.c | 98 __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/libvpx/libvpx/vpx_dsp/x86/ |
D | highbd_inv_txfm_sse4.h | 38 __m128i temp1[4], temp2[4]; in highbd_butterfly_sse4_1() local 41 extend_64bit(in1, temp2); in highbd_butterfly_sse4_1() 46 temp2[2] = _mm_mul_epi32(temp2[0], pair_c0); in highbd_butterfly_sse4_1() 47 temp2[3] = _mm_mul_epi32(temp2[1], pair_c0); in highbd_butterfly_sse4_1() 48 temp2[0] = _mm_mul_epi32(temp2[0], pair_c1); in highbd_butterfly_sse4_1() 49 temp2[1] = _mm_mul_epi32(temp2[1], pair_c1); in highbd_butterfly_sse4_1() 50 temp1[0] = _mm_sub_epi64(temp1[0], temp2[0]); in highbd_butterfly_sse4_1() 51 temp1[1] = _mm_sub_epi64(temp1[1], temp2[1]); in highbd_butterfly_sse4_1() 52 temp2[0] = _mm_add_epi64(temp1[2], temp2[2]); in highbd_butterfly_sse4_1() 53 temp2[1] = _mm_add_epi64(temp1[3], temp2[3]); in highbd_butterfly_sse4_1() [all …]
|
D | highbd_idct4x4_add_sse2.c | 30 __m128i temp1[4], temp2[4], step[4]; in highbd_idct4_small_sse2() local 40 temp2[0] = _mm_sub_epi32(io[0], io[2]); // input[0] - input[2] in highbd_idct4_small_sse2() 42 temp2[1] = _mm_srli_si128(temp2[0], 4); // 1, 3 in highbd_idct4_small_sse2() 45 temp2[0] = _mm_mul_epu32(temp2[0], cospi_p16_p16); // ([0] - [2])*cospi_16_64 in highbd_idct4_small_sse2() 46 temp2[1] = _mm_mul_epu32(temp2[1], cospi_p16_p16); // ([0] - [2])*cospi_16_64 in highbd_idct4_small_sse2() 48 step[1] = dct_const_round_shift_4_sse2(temp2[0], temp2[1]); in highbd_idct4_small_sse2() 51 temp2[3] = _mm_srli_si128(io[3], 4); in highbd_idct4_small_sse2() 54 temp2[0] = _mm_mul_epu32(io[1], cospi_p08_p08); // input[1] * cospi_8_64 in highbd_idct4_small_sse2() 55 temp2[1] = _mm_mul_epu32(temp1[3], cospi_p08_p08); // input[1] * cospi_8_64 in highbd_idct4_small_sse2() 57 temp1[3] = _mm_mul_epu32(temp2[3], cospi_p08_p08); // input[3] * cospi_8_64 in highbd_idct4_small_sse2() [all …]
|
/external/webp/src/dsp/ |
D | enc_mips_dsp_r2.c | 148 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in FTransform_MIPSdspR2() local 155 HORIZONTAL_PASS(0, temp0, temp1, temp2, temp3) in FTransform_MIPSdspR2() 162 VERTICAL_PASS(4, 12, 20, 28, temp2, temp6, temp10, temp14) in FTransform_MIPSdspR2() 176 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; in ITransformOne() local 183 ADD_SUB_HALVES(temp3, temp4, temp1, temp2) in ITransformOne() 184 LOAD_IN_X2(temp1, temp2, 8, 10) in ITransformOne() 186 temp10, temp8, temp9, temp7, temp1, temp2, temp5, temp6, in ITransformOne() 191 ADD_SUB_HALVES(temp1, temp2, temp3, temp8) in ITransformOne() 204 SRA_16(temp9, temp10, temp11, temp12, temp1, temp2, temp5, temp6) in ITransformOne() 205 INSERT_HALF_X2(temp1, temp6, temp5, temp2) in ITransformOne() [all …]
|
D | dec_mips_dsp_r2.c | 27 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 …]
|
D | lossless_mips_dsp_r2.c | 96 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() 237 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; in AddGreenToBlueAndRed_MIPSdspR2() local 284 [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), in AddGreenToBlueAndRed_MIPSdspR2() 295 int temp0, temp1, temp2, temp3, temp4, temp5; in TransformColorInverse_MIPSdspR2() local [all …]
|
D | lossless_enc_mips_dsp_r2.c | 23 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; in SubtractGreenFromBlueAndRed_MIPSdspR2() local 68 [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), in SubtractGreenFromBlueAndRed_MIPSdspR2() 83 int temp0, temp1, temp2, temp3, temp4, temp5; in TransformColor_MIPSdspR2() local 139 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in TransformColor_MIPSdspR2() 189 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; in CollectColorBlueTransforms_MIPSdspR2() local 206 [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), in CollectColorBlueTransforms_MIPSdspR2() 211 ++histo[(uint8_t)(temp2 >> 16)]; in CollectColorBlueTransforms_MIPSdspR2() 212 ++histo[(uint8_t)temp2]; in CollectColorBlueTransforms_MIPSdspR2() 240 int temp0, temp1, temp2, temp3, temp4; in CollectColorRedTransforms_MIPSdspR2() local 252 [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), [temp4]"=&r"(temp4) in CollectColorRedTransforms_MIPSdspR2() [all …]
|
D | rescaler_mips32.c | 39 int temp1, temp2, temp3; in ImportRowShrink_MIPS32() local 74 [temp2]"=&r"(temp2), [temp1]"=&r"(temp1) in ImportRowShrink_MIPS32() 99 int temp1, temp2, temp3, temp4; in ImportRowExpand_MIPS32() local 135 [temp2]"=&r"(temp2), [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), in ImportRowExpand_MIPS32() 155 const int temp2 = (int)wrk->fy_scale; in ExportRowExpand_MIPS32() local 178 : [temp2]"r"(temp2), [temp6]"r"(temp6) in ExportRowExpand_MIPS32() 206 : [temp2]"r"(temp2), [temp6]"r"(temp6), [A]"r"(A), [B]"r"(B) in ExportRowExpand_MIPS32() 220 const int temp2 = (int)wrk->fxy_scale; 251 : [temp2]"r"(temp2), [yscale]"r"(yscale), [temp6]"r"(temp6) 272 : [temp2]"r"(temp2), [temp6]"r"(temp6)
|
D | alpha_processing_mips_dsp_r2.c | 29 int temp1, temp2, temp3; in DispatchAlpha_MIPSdspR2() local 43 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in DispatchAlpha_MIPSdspR2() 95 int temp0, temp1, temp2, temp3, alpha; in MultARGBRow_MIPSdspR2() local 115 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in MultARGBRow_MIPSdspR2() 132 int temp0, temp1, temp2, temp3, offset; in PackARGB_MIPSdspR2() local 162 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in PackARGB_MIPSdspR2() 174 int temp0, temp1, temp2, offset; in PackRGB_MIPSdspR2() local 202 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in PackRGB_MIPSdspR2()
|
/external/llvm-project/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
D | p6.cpp | 39 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/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
D | p6.cpp | 39 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/ |
D | chpmv.c | 29 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 …]
|
D | zhpmv.c | 29 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 …]
|
D | zhbmv.c | 30 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 …]
|
D | chbmv.c | 29 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 …]
|
D | dspmv.c | 24 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 …]
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
D | itrans32_cols_dspr2.c | 31 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 …]
|
/external/libaom/libaom/aom_dsp/x86/ |
D | highbd_variance_sse4.c | 115 uint16_t temp2[4 * 4]; in aom_highbd_8_sub_pixel_variance4x4_sse4_1() local 119 aom_highbd_var_filter_block2d_bil_second_pass(fdata3, temp2, 4, 4, 4, 4, in aom_highbd_8_sub_pixel_variance4x4_sse4_1() 122 return aom_highbd_8_variance4x4(CONVERT_TO_BYTEPTR(temp2), 4, dst, dst_stride, in aom_highbd_8_sub_pixel_variance4x4_sse4_1() 130 uint16_t temp2[4 * 4]; in aom_highbd_10_sub_pixel_variance4x4_sse4_1() local 134 aom_highbd_var_filter_block2d_bil_second_pass(fdata3, temp2, 4, 4, 4, 4, in aom_highbd_10_sub_pixel_variance4x4_sse4_1() 137 return aom_highbd_10_variance4x4(CONVERT_TO_BYTEPTR(temp2), 4, dst, in aom_highbd_10_sub_pixel_variance4x4_sse4_1() 145 uint16_t temp2[4 * 4]; in aom_highbd_12_sub_pixel_variance4x4_sse4_1() local 149 aom_highbd_var_filter_block2d_bil_second_pass(fdata3, temp2, 4, 4, 4, 4, in aom_highbd_12_sub_pixel_variance4x4_sse4_1() 152 return aom_highbd_12_variance4x4(CONVERT_TO_BYTEPTR(temp2), 4, dst, in aom_highbd_12_sub_pixel_variance4x4_sse4_1() 163 uint16_t temp2[4 * 4]; in aom_highbd_8_sub_pixel_avg_variance4x4_sse4_1() local [all …]
|
/external/libvpx/libvpx/vpx_dsp/ |
D | inv_txfm.c | 135 tran_high_t temp1, temp2; in idct4_c() local 139 temp2 = ((int16_t)input[0] - (int16_t)input[2]) * cospi_16_64; in idct4_c() 141 step[1] = WRAPLOW(dct_const_round_shift(temp2)); in idct4_c() 143 temp2 = (int16_t)input[1] * cospi_8_64 + (int16_t)input[3] * cospi_24_64; in idct4_c() 145 step[3] = WRAPLOW(dct_const_round_shift(temp2)); in idct4_c() 273 tran_high_t temp1, temp2; in idct8_c() local 281 temp2 = (int16_t)input[1] * cospi_4_64 + (int16_t)input[7] * cospi_28_64; in idct8_c() 283 step1[7] = WRAPLOW(dct_const_round_shift(temp2)); in idct8_c() 285 temp2 = (int16_t)input[5] * cospi_20_64 + (int16_t)input[3] * cospi_12_64; in idct8_c() 287 step1[6] = WRAPLOW(dct_const_round_shift(temp2)); in idct8_c() [all …]
|
/external/libaom/libaom/aom_dsp/arm/ |
D | subpel_variance_neon.c | 78 DECLARE_ALIGNED(16, uint8_t, temp2[8 * 8]); in aom_sub_pixel_variance8x8_neon() 83 var_filter_block2d_bil_w8(fdata3, temp2, 8, 8, 8, 8, in aom_sub_pixel_variance8x8_neon() 85 return aom_variance8x8_neon(temp2, 8, dst, dst_stride, sse); in aom_sub_pixel_variance8x8_neon() 93 DECLARE_ALIGNED(16, uint8_t, temp2[16 * 16]); in aom_sub_pixel_variance16x16_neon() 98 var_filter_block2d_bil_w16(fdata3, temp2, 16, 16, 16, 16, in aom_sub_pixel_variance16x16_neon() 100 return aom_variance16x16_neon(temp2, 16, dst, dst_stride, sse); in aom_sub_pixel_variance16x16_neon() 108 DECLARE_ALIGNED(16, uint8_t, temp2[32 * 32]); in aom_sub_pixel_variance32x32_neon() 113 var_filter_block2d_bil_w16(fdata3, temp2, 32, 32, 32, 32, in aom_sub_pixel_variance32x32_neon() 115 return aom_variance32x32_neon(temp2, 32, dst, dst_stride, sse); in aom_sub_pixel_variance32x32_neon() 123 DECLARE_ALIGNED(16, uint8_t, temp2[64 * 64]); in aom_sub_pixel_variance64x64_neon() [all …]
|