Home
last modified time | relevance | path

Searched refs:temp5 (Results 1 – 25 of 37) sorted by relevance

12

/external/libvpx/libvpx/vpx_dsp/arm/
Dfdct32x32_neon.c1324 int16x8_t temp5[32]; in vpx_fdct32x32_neon() local
1345 dct_body_second_pass(temp0, temp5); in vpx_fdct32x32_neon()
1347 transpose_s16_8x8(&temp5[0], &temp5[1], &temp5[2], &temp5[3], &temp5[4], in vpx_fdct32x32_neon()
1348 &temp5[5], &temp5[6], &temp5[7]); in vpx_fdct32x32_neon()
1349 transpose_s16_8x8(&temp5[8], &temp5[9], &temp5[10], &temp5[11], &temp5[12], in vpx_fdct32x32_neon()
1350 &temp5[13], &temp5[14], &temp5[15]); in vpx_fdct32x32_neon()
1351 transpose_s16_8x8(&temp5[16], &temp5[17], &temp5[18], &temp5[19], &temp5[20], in vpx_fdct32x32_neon()
1352 &temp5[21], &temp5[22], &temp5[23]); in vpx_fdct32x32_neon()
1353 transpose_s16_8x8(&temp5[24], &temp5[25], &temp5[26], &temp5[27], &temp5[28], in vpx_fdct32x32_neon()
1354 &temp5[29], &temp5[30], &temp5[31]); in vpx_fdct32x32_neon()
[all …]
/external/libavc/common/x86/
Dih264_iquant_itrans_recon_ssse3.c119 __m128i temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; in ih264_iquant_itrans_recon_4x4_ssse3() local
141temp5 = _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_ssse3()
151 temp5 = _mm_madd_epi16(src_r1, temp5); in ih264_iquant_itrans_recon_4x4_ssse3()
157 resq_r1 = _mm_slli_epi32(temp5, u4_qp_div_6 - 4); in ih264_iquant_itrans_recon_4x4_ssse3()
162 temp5 = _mm_add_epi32(temp5, add_rshift); in ih264_iquant_itrans_recon_4x4_ssse3()
166 resq_r1 = _mm_srai_epi32(temp5, 4 - u4_qp_div_6); in ih264_iquant_itrans_recon_4x4_ssse3()
276 temp5 = _mm_add_epi32(temp1, temp2); in ih264_iquant_itrans_recon_4x4_ssse3()
277 temp5 = _mm_add_epi32(temp5, value_32); in ih264_iquant_itrans_recon_4x4_ssse3()
278 temp5 = _mm_srai_epi32(temp5, 6); in ih264_iquant_itrans_recon_4x4_ssse3()
279 temp5 = _mm_add_epi32(temp5, pred_r1); in ih264_iquant_itrans_recon_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
140temp5 = _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()
150 temp5 = _mm_madd_epi16(src_r1, temp5); in ih264_iquant_itrans_recon_4x4_sse42()
156 resq_r1 = _mm_slli_epi32(temp5, u4_qp_div_6 - 4); in ih264_iquant_itrans_recon_4x4_sse42()
161 temp5 = _mm_add_epi32(temp5, add_rshift); in ih264_iquant_itrans_recon_4x4_sse42()
165 resq_r1 = _mm_srai_epi32(temp5, 4 - u4_qp_div_6); in ih264_iquant_itrans_recon_4x4_sse42()
262 temp5 = _mm_add_epi32(temp1, temp2); in ih264_iquant_itrans_recon_4x4_sse42()
263 temp5 = _mm_add_epi32(temp5, value_32); in ih264_iquant_itrans_recon_4x4_sse42()
264 temp5 = _mm_srai_epi32(temp5, 6); in ih264_iquant_itrans_recon_4x4_sse42()
265 temp5 = _mm_add_epi32(temp5, pred_r1); in ih264_iquant_itrans_recon_4x4_sse42()
[all …]
Dih264_iquant_itrans_recon_dc_ssse3.c120 __m128i temp4, temp5, temp6, temp7; in ih264_iquant_itrans_recon_4x4_dc_ssse3() local
149 temp5 = _mm_add_epi16(value_add, pred_r2); in ih264_iquant_itrans_recon_4x4_dc_ssse3()
154 sign_reg = _mm_cmpgt_epi16(temp5, zero_8x16b); // sign check in ih264_iquant_itrans_recon_4x4_dc_ssse3()
155 temp5 = _mm_and_si128(temp5, sign_reg); in ih264_iquant_itrans_recon_4x4_dc_ssse3()
157 temp4 = _mm_packus_epi16(temp4,temp5); in ih264_iquant_itrans_recon_4x4_dc_ssse3()
158 temp5 = _mm_srli_si128(temp4,4); in ih264_iquant_itrans_recon_4x4_dc_ssse3()
159 temp6 = _mm_srli_si128(temp5,4); in ih264_iquant_itrans_recon_4x4_dc_ssse3()
165 *(pu4_out) = _mm_cvtsi128_si32(temp5); in ih264_iquant_itrans_recon_4x4_dc_ssse3()
245 __m128i temp1,temp2,temp3,temp4, temp5, temp6, temp7,temp8; in ih264_iquant_itrans_recon_8x8_dc_ssse3() local
296 temp5 = _mm_add_epi16(value_add, pred_r4); in ih264_iquant_itrans_recon_8x8_dc_ssse3()
[all …]
Dih264_deblk_luma_ssse3.c104 __m128i temp1, temp2, temp3, temp4, temp5, temp6; in ih264_deblk_luma_vert_bs4_ssse3() local
268 temp5 = _mm_add_epi16(temp1, const_val2_16x8); in ih264_deblk_luma_vert_bs4_ssse3()
272 temp1 = _mm_add_epi16(temp5, temp3); in ih264_deblk_luma_vert_bs4_ssse3()
279 temp5 = _mm_add_epi16(temp5, q0_8x16); in ih264_deblk_luma_vert_bs4_ssse3()
281 temp2 = _mm_add_epi16(temp5, q2_8x16); in ih264_deblk_luma_vert_bs4_ssse3()
301 temp2 = _mm_add_epi16(temp5, const_val2_16x8); in ih264_deblk_luma_vert_bs4_ssse3()
306 temp5 = _mm_slli_epi16(p3_8x16, 1); in ih264_deblk_luma_vert_bs4_ssse3()
310 temp1 = _mm_add_epi16(temp1, temp5); in ih264_deblk_luma_vert_bs4_ssse3()
328 temp5 = _mm_add_epi16(temp1, const_val2_16x8); in ih264_deblk_luma_vert_bs4_ssse3()
332 temp1 = _mm_add_epi16(temp5, temp3); in ih264_deblk_luma_vert_bs4_ssse3()
[all …]
/external/webp/src/dsp/
Ddec_mips_dsp_r2.c27 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9, temp10; in TransformDC() local
41 temp5, temp5, temp5, temp5, temp5, temp5, temp5, temp5, in TransformDC()
56 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; in TransformAC3() local
66 temp2, temp2, temp3, temp3, temp4, temp5, temp4, temp5) in TransformAC3()
67 LOAD_WITH_OFFSET_X4(temp3, temp5, temp11, temp12, dst, in TransformAC3()
71 CONVERT_2_BYTES_TO_HALF(temp13, temp14, temp3, temp15, temp5, temp16, in TransformAC3()
72 temp11, temp17, temp3, temp5, temp11, temp12) in TransformAC3()
75 STORE_SAT_SUM_X2(temp13, temp14, temp3, temp15, temp5, temp16, temp11, in TransformAC3()
87 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; in TransformOne() local
93 LOAD_IN_X2(temp5, temp6, 24, 26) in TransformOne()
[all …]
Denc_mips_dsp_r2.c148 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in FTransform_MIPSdspR2() local
156 HORIZONTAL_PASS(1, temp4, temp5, temp6, temp7) in FTransform_MIPSdspR2()
161 VERTICAL_PASS(2, 10, 18, 26, temp1, temp5, temp9, temp13) in FTransform_MIPSdspR2()
176 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; in ITransformOne() local
182 LOAD_IN_X2(temp5, temp6, 24, 26) in ITransformOne()
186 temp10, temp8, temp9, temp7, temp1, temp2, temp5, temp6, in ITransformOne()
192 ADD_SUB_HALVES(temp5, temp6, temp4, temp7) 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()
212 ADD_SUB_HALVES(temp5, temp7, temp6, temp8) in ITransformOne()
[all …]
Dlossless_mips_dsp_r2.c96 int temp0, temp1, temp2, temp3, temp4, temp5; in MAP_COLOR_FUNCS() local
112 [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5) in MAP_COLOR_FUNCS()
121 int temp0, temp1, temp2, temp3, temp4, temp5; in ClampedAddSubtractHalf() local
142 [temp3]"=&r"(temp3), [temp4]"=r"(temp4), [temp5]"=&r"(temp5) 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
285 [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), [temp6]"=&r"(temp6), in AddGreenToBlueAndRed_MIPSdspR2()
295 int temp0, temp1, temp2, temp3, temp4, temp5; in TransformColorInverse_MIPSdspR2() local
351 [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), in TransformColorInverse_MIPSdspR2()
[all …]
Denc_mips32.c119 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; in ITransformOne_MIPS32() local
127 VERTICAL_PASS(2, 18, 10, 26, temp8, temp4, temp5, temp6, temp7) in ITransformOne_MIPS32()
132 HORIZONTAL_PASS(1, temp1, temp5, temp9, temp13) in ITransformOne_MIPS32()
137 [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), in ITransformOne_MIPS32()
193 int temp0, temp1, temp2, temp3, temp4, temp5; in QuantizeBlock_MIPS32() local
225 [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), in QuantizeBlock_MIPS32()
368 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in Disto4x4_MIPS32() local
388 [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), in Disto4x4_MIPS32()
484 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in FTransform_MIPS32() local
494 HORIZONTAL_PASS(1, temp4, temp5, temp6, temp7) in FTransform_MIPS32()
[all …]
Drescaler_mips_dsp_r2.c36 int temp0, temp1, temp2, temp3, temp4, temp5, loop_end;
100 [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), [frow]"+r"(frow),
150 [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), [irow]"+r"(irow),
172 int temp0, temp1, temp2, temp3, temp4, temp5, loop_end; in ExportRowExpand_MIPSdspR2() local
210 [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), [frow]"+r"(frow), in ExportRowExpand_MIPSdspR2()
277 [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), [frow]"+r"(frow), in ExportRowExpand_MIPSdspR2()
Drescaler_mips32.c154 int temp0, temp1, temp3, temp4, temp5, loop_end; in ExportRowExpand_MIPS32() local
176 [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), [frow]"+r"(frow), in ExportRowExpand_MIPS32()
204 [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), [frow]"+r"(frow), in ExportRowExpand_MIPS32()
219 int temp0, temp1, temp3, temp4, temp5, loop_end;
249 [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), [frow]"+r"(frow),
270 [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), [irow]"+r"(irow),
Dlossless_enc_mips_dsp_r2.c23 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; in SubtractGreenFromBlueAndRed_MIPSdspR2() local
69 [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), [temp6]"=&r"(temp6), in SubtractGreenFromBlueAndRed_MIPSdspR2()
83 int temp0, temp1, temp2, temp3, temp4, temp5; in TransformColor_MIPSdspR2() local
140 [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), in TransformColor_MIPSdspR2()
189 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; in CollectColorBlueTransforms_MIPSdspR2() local
207 [temp5]"=&r"(temp5), [temp6]"=&r"(temp6) in CollectColorBlueTransforms_MIPSdspR2()
Dfilters_mips_dsp_r2.c40 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; \
97 [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), \
114 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; \
160 [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), \
Dyuv_mips_dsp_r2.c63 [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), \
76 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; \
Dlossless_enc_mips32.c329 [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), \
349 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; in AddVector_MIPS32() local
360 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; in AddVectorEq_MIPS32() local
Ddec_mips32.c220 int temp5, temp6, temp7, temp8, temp9; in TransformOne() local
540 [temp3]"=&r"(temp3), [temp4]"=&r"(temp4), [temp5]"=&r"(temp5), in TransformOne()
/external/libvpx/libvpx/vpx_dsp/ppc/
Dfdct32x32_vsx.c476 int16x8_t temp5[32]; in vpx_fdct32x32_rd_vsx() local
499 vpx_fdct32_vsx(temp0, temp5, 1); in vpx_fdct32x32_rd_vsx()
501 transpose_8x8(&temp5[0], &temp6[0]); in vpx_fdct32x32_rd_vsx()
502 transpose_8x8(&temp5[8], &temp6[8]); in vpx_fdct32x32_rd_vsx()
503 transpose_8x8(&temp5[16], &temp6[16]); in vpx_fdct32x32_rd_vsx()
504 transpose_8x8(&temp5[24], &temp6[24]); in vpx_fdct32x32_rd_vsx()
514 vpx_fdct32_vsx(temp0, temp5, 1); in vpx_fdct32x32_rd_vsx()
516 transpose_8x8(&temp5[0], &temp6[0]); in vpx_fdct32x32_rd_vsx()
517 transpose_8x8(&temp5[8], &temp6[8]); in vpx_fdct32x32_rd_vsx()
518 transpose_8x8(&temp5[16], &temp6[16]); in vpx_fdct32x32_rd_vsx()
[all …]
/external/libvpx/libvpx/vpx_dsp/mips/
Ddeblock_msa.c22 v8i16 temp5, temp6, temp7, temp8, temp9; \
26 ILVR_H2_SH(temp1, temp0, temp3, temp2, temp4, temp5); \
27 ILVRL_W2_SH(temp5, temp4, temp6, temp7); \
28 ILVL_H2_SH(temp1, temp0, temp3, temp2, temp4, temp5); \
29 ILVRL_W2_SH(temp5, temp4, temp8, temp9); \
32 ILVR_H2_SH(temp1, temp0, temp3, temp2, temp4, temp5); \
33 ILVRL_W2_UB(temp5, temp4, out8, out10); \
34 ILVL_H2_SH(temp1, temp0, temp3, temp2, temp4, temp5); \
35 ILVRL_W2_UB(temp5, temp4, out12, out14); \
77 v8i16 temp5, temp6, temp7, temp8, temp9; \
[all …]
/external/llvm/test/CodeGen/AMDGPU/
Dschedule-fs-loop-nested.ll34 %temp5.0 = phi float [ %20, %main_body ], [ %temp5.1, %IF31 ]
47 %31 = call float @llvm.AMDGPU.clamp.f32(float %temp5.0, float 0.000000e+00, float 1.000000e+00)
59 %temp5.1 = phi float [ %temp6.1, %ENDIF30 ], [ %temp5.0, %LOOP ]
60 %temp4.1 = phi float [ %temp5.1, %ENDIF30 ], [ %temp4.0, %LOOP ]
Dschedule-fs-loop.ll19 %temp4.0 = phi float [ %5, %main_body ], [ %temp5.0, %ENDIF ]
20 %temp5.0 = phi float [ %7, %main_body ], [ %temp6.0, %ENDIF ]
34 %18 = call float @llvm.AMDGPU.clamp.f32(float %temp5.0, float 0.000000e+00, float 1.000000e+00)
Dschedule-if-2.ll62 %temp5.0 = phi float [ %27, %IF ], [ %60, %IF23 ], [ 0.000000e+00, %ELSE ]
66 %45 = insertelement <4 x float> %44, float %temp5.0, i32 1
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dschedule-fs-loop-nested.ll34 %temp5.0 = phi float [ %tmp24, %main_body ], [ %temp5.1, %IF31 ]
48 %max.0.i3 = call float @llvm.maxnum.f32(float %temp5.0, float 0.000000e+00)
61 %temp5.1 = phi float [ %temp6.1, %ENDIF30 ], [ %temp5.0, %LOOP ]
62 %temp4.1 = phi float [ %temp5.1, %ENDIF30 ], [ %temp4.0, %LOOP ]
Dschedule-if-2.ll62 %temp5.0 = phi float [ %27, %IF ], [ %60, %IF23 ], [ 0.000000e+00, %ELSE ]
66 %45 = insertelement <4 x float> %44, float %temp5.0, i32 1
/external/mesa3d/src/gallium/state_trackers/xa/
Dxa_tgsi.c157 struct ureg_dst temp5 = ureg_DECL_temporary(ureg); in linear_gradient() local
190 ureg_release_temporary(ureg, temp5); in linear_gradient()
208 struct ureg_dst temp5 = ureg_DECL_temporary(ureg); in radial_gradient() local
222 ureg_MOV(ureg, ureg_writemask(temp5, TGSI_WRITEMASK_X), ureg_src(temp1)); in radial_gradient()
223 ureg_MOV(ureg, ureg_writemask(temp5, TGSI_WRITEMASK_Y), ureg_src(temp2)); in radial_gradient()
226 ureg_scalar(ureg_src(temp5), TGSI_SWIZZLE_Y)); in radial_gradient()
229 ureg_scalar(ureg_src(temp5), TGSI_SWIZZLE_X), ureg_src(temp0)); in radial_gradient()
232 ureg_scalar(ureg_src(temp5), TGSI_SWIZZLE_Y), in radial_gradient()
233 ureg_scalar(ureg_src(temp5), TGSI_SWIZZLE_Y)); in radial_gradient()
235 ureg_scalar(ureg_src(temp5), TGSI_SWIZZLE_X), in radial_gradient()
[all …]
/external/webrtc/webrtc/modules/audio_processing/aecm/
Daecm_core_mips.c530 int32_t temp0, temp2, temp3, temp4, temp5, temp6; in WebRtcAecm_StoreAdaptiveChannel_mips() local
561 [temp4] "=&r" (temp4), [temp5] "=&r" (temp5), [temp6] "=&r" (temp6), in WebRtcAecm_StoreAdaptiveChannel_mips()
575 int32_t temp1, temp2, temp4, temp5; in WebRtcAecm_ResetAdaptiveChannel_mips() local
602 [temp4] "=&r" (temp4), [temp5] "=&r" (temp5), in WebRtcAecm_ResetAdaptiveChannel_mips()
842 int32_t temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; in WebRtcAecm_ProcessBlock() local
1099 [temp4] "=&r" (temp4), [temp5] "=&r" (temp5), [temp6] "=&r" (temp6), in WebRtcAecm_ProcessBlock()
1177 [temp4] "=&r" (temp4), [temp5] "=&r" (temp5), [ptr] "+r" (ptr), in WebRtcAecm_ProcessBlock()
1219 [temp4] "=&r" (temp4), [temp5] "=&r" (temp5), [ptr] "+r" (ptr), in WebRtcAecm_ProcessBlock()

12