/external/libvpx/libvpx/vpx_dsp/ppc/ |
D | fdct32x32_vsx.c | 227 int16x8_t temp0[32]; // Hold stages: 1, 4, 7 in fdct32_vsx() local 235 temp0[i] = vec_add(in[i], in[31 - i]); in fdct32_vsx() 243 temp1[i] = vec_add(temp0[i], temp0[15 - i]); in fdct32_vsx() 244 temp1[i + 8] = vec_sub(temp0[7 - i], temp0[i + 8]); in fdct32_vsx() 319 temp0[7] = vec_sub(temp1[0], temp1[7]); in fdct32_vsx() 320 temp0[4] = vec_sub(temp1[3], temp1[4]); in fdct32_vsx() 321 temp0[16] = vec_add(temp1[16], temp1[23]); in fdct32_vsx() 322 temp0[17] = vec_add(temp1[17], temp1[22]); in fdct32_vsx() 323 temp0[22] = vec_sub(temp1[17], temp1[22]); in fdct32_vsx() 324 temp0[23] = vec_sub(temp1[16], temp1[23]); in fdct32_vsx() [all …]
|
/external/libavc/common/x86/ |
D | ih264_resi_trans_quant_sse42.c | 120 __m128i temp0, temp1, temp2, temp3; in ih264_resi_trans_quant_4x4_sse42() local 165 temp0 = _mm_unpacklo_epi16(src_r0, src_r1); //a0 b0 a1 b1 a2 b2 a3 b3 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() 177 temp0 = _mm_add_epi16(src_r0, src_r3); 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() 203 temp0 = _mm_unpacklo_epi16(src_r0, src_r1); //a0 a1 b0 b1 c0 c1 d0 d1 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_sse42.c | 98 __m128i temp0, temp1, temp2, temp3; in ih264_ihadamard_scaling_4x4_sse42() local 125 temp0 = _mm_unpacklo_epi32(src_r0, src_r1); //a0 b0 a1 b1 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() 134 temp0 = _mm_add_epi32(src_r0, src_r3); 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() 154 temp0 = _mm_unpacklo_epi32(src_r0, src_r1); //a0 a1 b0 b1 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 …]
|
D | ih264_ihadamard_scaling_ssse3.c | 98 __m128i temp0, temp1, temp2, temp3; in ih264_ihadamard_scaling_4x4_ssse3() local 127 temp0 = _mm_unpacklo_epi32(src_r0, src_r1); //a0 b0 a1 b1 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() 136 temp0 = _mm_add_epi32(src_r0, src_r3); 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() 156 temp0 = _mm_unpacklo_epi32(src_r0, src_r1); //a0 a1 b0 b1 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 136 …temp0 = _mm_mullo_epi16(scalemat_r0_r1, dequant_r0_r1); //b00*q00 b01*q01 b02*q02 b03*q03 b10*q10 … in ih264_iquant_itrans_recon_4x4_sse42() 139 …temp4 = _mm_unpacklo_epi16(temp0, zero_8x16b); // b00*q00 0 b01*q01 0 b02*q02 0 b03*q03 0 -- 16 bi… in ih264_iquant_itrans_recon_4x4_sse42() 140 …temp5 = _mm_unpackhi_epi16(temp0, zero_8x16b); // b10*q10 0 b11*q11 0 b12*q12 0 b13*q13 0 -- 16 bi… in ih264_iquant_itrans_recon_4x4_sse42() 194 temp0 = _mm_add_epi32(resq_r0, resq_r2); in ih264_iquant_itrans_recon_4x4_sse42() 205 resq_r0 = _mm_add_epi32(temp0, temp3); in ih264_iquant_itrans_recon_4x4_sse42() 211 resq_r3 = _mm_sub_epi32(temp0, temp3); in ih264_iquant_itrans_recon_4x4_sse42() 246 temp0 = _mm_add_epi32(resq_r0, resq_r2); in ih264_iquant_itrans_recon_4x4_sse42() 257 temp4 = _mm_add_epi32(temp0, temp3); in ih264_iquant_itrans_recon_4x4_sse42() 272 temp7 = _mm_sub_epi32(temp0, temp3); in ih264_iquant_itrans_recon_4x4_sse42() [all …]
|
/external/webp/src/dsp/ |
D | dec_mips_dsp_r2.c | 490 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in SimpleVFilter16() local 536 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in SimpleVFilter16() 559 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in SimpleHFilter16() local 565 LOAD_4_BYTES(temp0, temp1, temp2, temp3, -2, 0, -1, 0, 0, 0, 1, 0, p) in SimpleHFilter16() 598 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in SimpleHFilter16() 631 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; in VE4() local 651 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in VE4() 660 int temp0, temp1, temp2, temp3, temp4; in DC4() local 672 STORE_8_BYTES(temp0, temp0, 0, 0, 1, dst) in DC4() 673 STORE_8_BYTES(temp0, temp0, 2, 0, 3, dst) in DC4() [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() 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 166 [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), [temp0]"=&r"(temp0), in Select() 237 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; in AddGreenToBlueAndRed_MIPSdspR2() local 283 : [dst]"+&r"(dst), [src]"+&r"(src), [temp0]"=&r"(temp0), in AddGreenToBlueAndRed_MIPSdspR2() 295 int temp0, temp1, temp2, temp3, temp4, temp5; in TransformColorInverse_MIPSdspR2() local 350 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in TransformColorInverse_MIPSdspR2() [all …]
|
D | alpha_processing_mips_dsp_r2.c | 23 int i, j, temp0; in DispatchAlpha_MIPSdspR2() local 43 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in DispatchAlpha_MIPSdspR2() 58 : [temp0]"=&r"(temp0), [palpha]"+r"(palpha), [pdst]"+r"(pdst), in DispatchAlpha_MIPSdspR2() 75 : [temp0]"=&r"(temp0), [alpha_mask]"+r"(alpha_mask) 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()
|
D | yuv_mips32.c | 29 int temp0, temp1, temp2, temp3, temp4; \ 35 temp0 = MultHi(y[0], 19077); \ 40 r = VP8Clip8(temp0 + temp1); \ 41 g = VP8Clip8(temp0 - temp2); \ 42 b = VP8Clip8(temp0 + temp4); \ 43 temp0 = MultHi(y[1], 19077); \ 48 r = VP8Clip8(temp0 + temp1); \ 49 g = VP8Clip8(temp0 - temp2); \ 50 b = VP8Clip8(temp0 + temp4); \ 65 temp0 = MultHi(y[0], 19077); \ [all …]
|
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() 160 VERTICAL_PASS(0, 8, 16, 24, temp0, temp4, temp8, temp12) in FTransform_MIPSdspR2() 165 [temp0]"=&r"(temp0), [temp19]"=&r"(temp19), [temp20]"=&r"(temp20) in FTransform_MIPSdspR2() 421 int temp0, temp1, temp2, temp3; \ 437 : [leftY_1]"+&r"(leftY_1), [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), \ 486 int temp0, temp1, temp2, temp3; in DCMode16() local 490 LOAD_WITH_OFFSET_X4(temp0, temp1, temp2, temp3, top, in DCMode16() 503 LOAD_WITH_OFFSET_X4(temp0, temp1, temp2, temp3, left, in DCMode16() 519 LOAD_WITH_OFFSET_X4(temp0, temp1, temp2, temp3, left, in DCMode16() [all …]
|
D | enc_mips32.c | 119 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; in ITransformOne_MIPS32() local 126 VERTICAL_PASS(0, 16, 8, 24, temp4, temp0, temp1, temp2, temp3) in ITransformOne_MIPS32() 131 HORIZONTAL_PASS(0, temp0, temp4, temp8, temp12) in ITransformOne_MIPS32() 136 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in ITransformOne_MIPS32() 193 int temp0, temp1, temp2, temp3, temp4, temp5; in QuantizeBlock_MIPS32() local 223 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), in QuantizeBlock_MIPS32() 368 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in Disto4x4_MIPS32() local 387 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2), in Disto4x4_MIPS32() 394 return temp0; in Disto4x4_MIPS32() 484 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in FTransform_MIPS32() local [all …]
|
D | lossless_enc_mips_dsp_r2.c | 23 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; in SubtractGreenFromBlueAndRed_MIPSdspR2() local 67 : [argb_data]"+&r"(argb_data), [temp0]"=&r"(temp0), 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 205 : [p_argb]"+&r"(p_argb), [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), in CollectColorBlueTransforms_MIPSdspR2() 240 int temp0, temp1, temp2, temp3, temp4; in CollectColorRedTransforms_MIPSdspR2() local 251 : [p_argb]"+&r"(p_argb), [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), in CollectColorRedTransforms_MIPSdspR2()
|
D | lossless_enc_mips32.c | 108 int i, temp0, temp1; in ExtraCost_MIPS32() local 127 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), in ExtraCost_MIPS32() 133 return (double)((int64_t)temp0 << 32 | temp1); in ExtraCost_MIPS32() 154 int i, temp0, temp1, temp2, temp3; in ExtraCostCombined_MIPS32() local 179 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), in ExtraCostCombined_MIPS32() 186 return (double)((int64_t)temp0 << 32 | temp1); in ExtraCostCombined_MIPS32() 210 [temp3]"=&r"(temp3), [temp0]"+r"(temp0) \ 222 int temp0, temp1, temp2, temp3; in GetEntropyUnrefinedHelper() local 237 temp0 = (*val_prev != 0); in GetEntropyUnrefinedHelper() 327 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), \ [all …]
|
D | rescaler_mips_dsp_r2.c | 36 int temp0, temp1, temp2, temp3, temp4, temp5, loop_end; 99 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp3]"=&r"(temp3), 149 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp3]"=&r"(temp3), 172 int temp0, temp1, temp2, temp3, temp4, temp5, loop_end; in ExportRowExpand_MIPSdspR2() local 209 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp3]"=&r"(temp3), in ExportRowExpand_MIPSdspR2() 276 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp3]"=&r"(temp3), in ExportRowExpand_MIPSdspR2()
|
D | rescaler_mips32.c | 154 int temp0, temp1, temp3, temp4, temp5, loop_end; in ExportRowExpand_MIPS32() local 175 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp3]"=&r"(temp3), in ExportRowExpand_MIPS32() 203 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp3]"=&r"(temp3), in ExportRowExpand_MIPS32() 219 int temp0, temp1, temp3, temp4, temp5, loop_end; 248 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp3]"=&r"(temp3), 269 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp3]"=&r"(temp3),
|
D | cost_mips32.c | 19 int temp0, temp1; in GetResidualCost_MIPS32() local 76 [ctx_reg]"=&r"(ctx_reg), [p_costs]"+&r"(p_costs), [temp0]"=&r"(temp0), in GetResidualCost_MIPS32() 102 int temp0, temp1, temp2, n, n1; in SetResidualCoeffs_MIPS32() local 130 : [p_coeffs]"+&r"(p_coeffs), [temp0]"=&r"(temp0), in SetResidualCoeffs_MIPS32()
|
/external/libvpx/libvpx/vp8/encoder/mips/msa/ |
D | dct_msa.c | 71 v8i16 temp0, temp1; in vp8_short_fdct4x4_msa() local 80 BUTTERFLY_4(in0, in1, in2, in3, temp0, temp1, in1, in3); in vp8_short_fdct4x4_msa() 81 SLLI_4V(temp0, temp1, in1, in3, 3); in vp8_short_fdct4x4_msa() 82 in0 = temp0 + temp1; in vp8_short_fdct4x4_msa() 83 in2 = temp0 - temp1; in vp8_short_fdct4x4_msa() 85 temp0 = __msa_ilvr_h(in3, in1); in vp8_short_fdct4x4_msa() 90 DPADD_SH2_SW(temp0, temp0, const0, const1, out0, out1); in vp8_short_fdct4x4_msa() 96 BUTTERFLY_4(in0, in1, in2, in3, temp0, temp1, in1, in3); in vp8_short_fdct4x4_msa() 97 in0 = temp0 + temp1 + 7; in vp8_short_fdct4x4_msa() 98 in2 = temp0 - temp1 + 7; in vp8_short_fdct4x4_msa() [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 104 [load4] "=&r"(load4), [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in vpx_idct32_cols_add_blk_dspr2() 164 [load4] "=&r"(load4), [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in vpx_idct32_cols_add_blk_dspr2() 224 [load4] "=&r"(load4), [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in vpx_idct32_cols_add_blk_dspr2() 280 [load4] "=&r"(load4), [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in vpx_idct32_cols_add_blk_dspr2() 336 [load4] "=&r"(load4), [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in vpx_idct32_cols_add_blk_dspr2() 392 [load4] "=&r"(load4), [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in vpx_idct32_cols_add_blk_dspr2() 436 : [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), [step3_8] "=&r"(step3_8), in vpx_idct32_cols_add_blk_dspr2() 464 : [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in vpx_idct32_cols_add_blk_dspr2() 489 : [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in vpx_idct32_cols_add_blk_dspr2() [all …]
|
D | itrans32_dspr2.c | 35 int temp0, temp1, temp2, temp3; in idct32_rows_dspr2() local 148 [load4] "=&r"(load4), [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in idct32_rows_dspr2() 208 [load4] "=&r"(load4), [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in idct32_rows_dspr2() 268 [load4] "=&r"(load4), [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in idct32_rows_dspr2() 324 [load4] "=&r"(load4), [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in idct32_rows_dspr2() 380 [load4] "=&r"(load4), [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in idct32_rows_dspr2() 436 [load4] "=&r"(load4), [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in idct32_rows_dspr2() 480 : [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), [step3_8] "=&r"(step3_8), in idct32_rows_dspr2() 508 : [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in idct32_rows_dspr2() 533 : [temp0] "=&r"(temp0), [temp1] "=&r"(temp1), in idct32_rows_dspr2() [all …]
|
D | fwd_dct32x32_msa.c | 63 v8i16 temp0, temp1; in fdct8x32_1d_column_even_store() local 77 BUTTERFLY_4(in0, in1, in2, in3, temp0, in4, in1, in0); in fdct8x32_1d_column_even_store() 78 DOTP_CONST_PAIR(temp0, in4, cospi_16_64, cospi_16_64, temp1, temp0); in fdct8x32_1d_column_even_store() 79 FDCT32_POSTPROC_2V_POS_H(temp0, temp1); in fdct8x32_1d_column_even_store() 80 ST_SH(temp0, temp); in fdct8x32_1d_column_even_store() 83 DOTP_CONST_PAIR(in0, in1, cospi_24_64, cospi_8_64, temp1, temp0); in fdct8x32_1d_column_even_store() 84 FDCT32_POSTPROC_2V_POS_H(temp0, temp1); in fdct8x32_1d_column_even_store() 85 ST_SH(temp0, temp + 256); in fdct8x32_1d_column_even_store() 91 DOTP_CONST_PAIR(vec1, vec0, cospi_28_64, cospi_4_64, temp1, temp0); in fdct8x32_1d_column_even_store() 92 FDCT32_POSTPROC_2V_POS_H(temp0, temp1); in fdct8x32_1d_column_even_store() [all …]
|
/external/libmpeg2/common/x86/ |
D | impeg2_idct_recon_sse42_intr.c | 1854 __m128i temp0, temp1; in impeg2_idct_recon_dc_mismatch_sse42() local 1871 temp0 = _mm_cvtepi16_epi32(mismatch_stg2_additive); in impeg2_idct_recon_dc_mismatch_sse42() 1878 temp0 = _mm_add_epi32(temp0, value_4x32b); in impeg2_idct_recon_dc_mismatch_sse42() 1880 temp0 = _mm_add_epi32(temp0, round_stg2); in impeg2_idct_recon_dc_mismatch_sse42() 1883 temp0 = _mm_srai_epi32(temp0, IDCT_STG2_SHIFT); in impeg2_idct_recon_dc_mismatch_sse42() 1885 temp0 = _mm_add_epi32(temp0, pred_half0); 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() 1891 _mm_storel_epi64((__m128i *)pu1_dst, temp0); in impeg2_idct_recon_dc_mismatch_sse42() 1897 temp0 = _mm_cvtepi16_epi32(mismatch_stg2_additive); in impeg2_idct_recon_dc_mismatch_sse42() [all …]
|
/external/libaom/libaom/av1/encoder/x86/ |
D | av1_fwd_txfm_avx2.h | 27 __m256i temp0 = _mm256_add_epi32(in0_w0, in1_w1); in btf_32_avx2_type0() local 28 temp0 = _mm256_add_epi32(temp0, _r); in btf_32_avx2_type0() 29 *in0 = _mm256_srai_epi32(temp0, cos_bit); in btf_32_avx2_type0() 46 __m256i temp0 = _mm256_add_epi32(in0_w0, in1_w1); in btf_32_avx2_type1() local 47 temp0 = _mm256_add_epi32(temp0, _r); in btf_32_avx2_type1() 48 *in0 = _mm256_srai_epi32(temp0, cos_bit); in btf_32_avx2_type1() 66 __m256i temp0 = _mm256_add_epi32(in0_w0, in1_w1); in btf_32_avx2_type0_new() local 67 temp0 = _mm256_add_epi32(temp0, _r); in btf_32_avx2_type0_new() 68 *in0 = _mm256_srai_epi32(temp0, cos_bit); in btf_32_avx2_type0_new() 86 __m256i temp0 = _mm256_add_epi32(in0_w0, in1_w1); in btf_32_avx2_type1_new() local [all …]
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | subpel_variance_neon.c | 104 uint8_t temp0[n * (m + (n == 4 ? 2 : 1))]; \ 108 var_filter_block2d_bil_w4(src_ptr, temp0, src_stride, 1, (m + 2), \ 110 var_filter_block2d_bil_w4(temp0, temp1, n, n, m, \ 113 var_filter_block2d_bil_w8(src_ptr, temp0, src_stride, 1, (m + 1), \ 115 var_filter_block2d_bil_w8(temp0, temp1, n, n, m, \ 118 var_filter_block2d_bil_w16(src_ptr, temp0, src_stride, 1, (m + 1), n, \ 120 var_filter_block2d_bil_w16(temp0, temp1, n, n, m, n, \ 147 uint8_t temp0[n * (m + (n == 4 ? 2 : 1))]; \ 151 var_filter_block2d_bil_w4(src_ptr, temp0, src_stride, 1, (m + 2), \ 153 var_filter_block2d_bil_w4(temp0, temp1, n, n, m, \ [all …]
|
/external/python/cpython3/Modules/_sha3/kcp/ |
D | KeccakP-1600-inplace32BI.c | 32 #define prepareToBitInterleaving(low, high, temp, temp0, temp1) \ argument 33 temp0 = (low); \ 34 temp = (temp0 ^ (temp0 >> 1)) & 0x22222222UL; temp0 = temp0 ^ temp ^ (temp << 1); \ 35 temp = (temp0 ^ (temp0 >> 2)) & 0x0C0C0C0CUL; temp0 = temp0 ^ temp ^ (temp << 2); \ 36 temp = (temp0 ^ (temp0 >> 4)) & 0x00F000F0UL; temp0 = temp0 ^ temp ^ (temp << 4); \ 37 temp = (temp0 ^ (temp0 >> 8)) & 0x0000FF00UL; temp0 = temp0 ^ temp ^ (temp << 8); \ 44 #define toBitInterleavingAndXOR(low, high, even, odd, temp, temp0, temp1) \ argument 45 prepareToBitInterleaving(low, high, temp, temp0, temp1) \ 46 even ^= (temp0 & 0x0000FFFF) | (temp1 << 16); \ 47 odd ^= (temp0 >> 16) | (temp1 & 0xFFFF0000); [all …]
|
/external/llvm/test/Transforms/ObjCARC/ |
D | intrinsic-use.ll | 22 ; CHECK-NEXT: store i8* %y, i8** %temp0 25 ; CHECK-NEXT: [[VAL1:%.*]] = load i8*, i8** %temp0 44 %temp0 = alloca i8*, align 8 48 store i8* %y, i8** %temp0 49 call void @test0_helper(i8* %x, i8** %temp0) 50 %val1 = load i8*, i8** %temp0 70 ; CHECK-NEXT: store i8* %y, i8** %temp0 73 ; CHECK-NEXT: [[VAL1:%.*]] = load i8*, i8** %temp0 90 %temp0 = alloca i8*, align 8 94 store i8* %y, i8** %temp0 [all …]
|