Home
last modified time | relevance | path

Searched refs:pu1_pred (Results 1 – 25 of 91) sorted by relevance

1234

/external/libhevc/encoder/arm/
Dihevce_sad_compute_neon.c57 UWORD8 *pu1_src, UWORD8 *pu1_pred, WORD32 src_strd, WORD32 pred_strd) in ihevce_4x4_sad_computer_neon() argument
60 const uint8x16_t ref_u8 = load_unaligned_u8q(pu1_pred, pred_strd); in ihevce_4x4_sad_computer_neon()
73 UWORD8 *pu1_src, UWORD8 *pu1_pred, WORD32 src_strd, WORD32 pred_strd, WORD32 ht) in ihevce_8xn_sad_computer_neon() argument
86 const uint8x8_t pred = vld1_u8(pu1_pred); in ihevce_8xn_sad_computer_neon()
90 pu1_pred += pred_strd; in ihevce_8xn_sad_computer_neon()
100 UWORD8 *pu1_src, UWORD8 *pu1_pred, WORD32 src_strd, WORD32 pred_strd, WORD32 ht) in ihevce_16xn_sad_computer_neon() argument
114 const uint8x16_t pred = vld1q_u8(pu1_pred); in ihevce_16xn_sad_computer_neon()
119 pu1_pred += pred_strd; in ihevce_16xn_sad_computer_neon()
130 UWORD8 *pu1_src, UWORD8 *pu1_pred, WORD32 src_strd, WORD32 pred_strd, WORD32 ht) in ihevce_32xn_sad_computer_neon() argument
144 const uint8x16_t pred_0 = vld1q_u8(pu1_pred); in ihevce_32xn_sad_computer_neon()
[all …]
Dihevce_itrans_recon_neon.c59 UWORD8 *pu1_pred, WORD32 pred_strd, UWORD8 *pu1_dst, WORD32 dst_strd, WORD32 dc_value) in ihevce_itrans_recon_dc_4x4_luma_neon() argument
65 src_u8 = load_unaligned_u8q(pu1_pred, pred_strd); in ihevce_itrans_recon_dc_4x4_luma_neon()
82 UWORD8 *pu1_pred, in ihevce_itrans_recon_dc_4x4_chroma_neon() argument
98 a1 = vreinterpretq_s16_u16(vmovl_u8(vld1_u8(pu1_pred + i * pred_strd))); in ihevce_itrans_recon_dc_4x4_chroma_neon()
107 UWORD8 *pu1_pred, in ihevce_itrans_recon_dc_8x8_luma_neon() argument
123 a2 = vld1_u8(pu1_pred + i * pred_strd); in ihevce_itrans_recon_dc_8x8_luma_neon()
124 a3 = vld1_u8(pu1_pred + (i + 1) * pred_strd); in ihevce_itrans_recon_dc_8x8_luma_neon()
133 UWORD8 *pu1_pred, in ihevce_itrans_recon_dc_8x8_chroma_neon() argument
151 a2 = vld2_u8(pu1_pred + i * pred_strd).val[e_chroma_plane]; in ihevce_itrans_recon_dc_8x8_chroma_neon()
152 a3 = vld2_u8(pu1_pred + (i + 1) * pred_strd).val[e_chroma_plane]; in ihevce_itrans_recon_dc_8x8_chroma_neon()
[all …]
Dihevce_ssd_calculator_neon.c57 UWORD8 *pu1_src, UWORD8 *pu1_pred, WORD32 src_strd, WORD32 pred_strd, WORD32 is_chroma) in ihevce_4x4_ssd_computer_neon() argument
66 pred = load_unaligned_u8q(pu1_pred, pred_strd); in ihevce_4x4_ssd_computer_neon()
71 pred = load_unaligned_u8qi(pu1_pred, pred_strd); in ihevce_4x4_ssd_computer_neon()
83 ihevce_1x8_ssd_computer_neon(UWORD8 *pu1_src, UWORD8 *pu1_pred, WORD32 is_chroma) in ihevce_1x8_ssd_computer_neon() argument
92 pred = vld1_u8(pu1_pred); in ihevce_1x8_ssd_computer_neon()
97 pred = vld2_u8(pu1_pred).val[0]; in ihevce_1x8_ssd_computer_neon()
107 ihevce_1x16_ssd_computer_neon(UWORD8 *pu1_src, UWORD8 *pu1_pred, WORD32 is_chroma) in ihevce_1x16_ssd_computer_neon() argument
116 pred = vld1q_u8(pu1_pred); in ihevce_1x16_ssd_computer_neon()
121 pred = vld2q_u8(pu1_pred).val[0]; in ihevce_1x16_ssd_computer_neon()
133 ihevce_1x32_ssd_computer_neon(UWORD8 *pu1_src, UWORD8 *pu1_pred, WORD32 is_chroma) in ihevce_1x32_ssd_computer_neon() argument
[all …]
Dihevce_had_compute_neon.c66 const uint8x8_t p##k = vld1_u8(pu1_pred); \
69 pu1_pred += pred_strd; \
74 const uint8x8_t p##k = vld2_u8(pu1_pred).val[0]; \
77 pu1_pred += pred_strd; \
101 UWORD8 *pu1_pred, in hadamard4x4_2() argument
127 UWORD8 *pu1_pred, in hadamard4x4_4() argument
139 hadamard4x4_2(pu1_src, src_strd, pu1_pred, pred_strd, r0, r1, r2, r3); in hadamard4x4_4()
143 pu1_pred += (4 * pred_strd); in hadamard4x4_4()
144 hadamard4x4_2(pu1_src, src_strd, pu1_pred, pred_strd, r4, r5, r6, r7); in hadamard4x4_4()
291 UWORD8 *pu1_pred, in hadamard8x8() argument
[all …]
/external/libhevc/common/
Dihevc_recon.c95 UWORD8 *pu1_pred, in ihevc_recon_4x4_ttype1() argument
116 pu1_dst[j * dst_strd] = pu1_pred[j * pred_strd]; in ihevc_recon_4x4_ttype1()
124 CLIP_U8(pi2_src[j * src_strd] + pu1_pred[j * pred_strd]); in ihevc_recon_4x4_ttype1()
129 pu1_pred++; in ihevc_recon_4x4_ttype1()
177 UWORD8 *pu1_pred, in ihevc_recon_4x4() argument
198 pu1_dst[j * dst_strd] = pu1_pred[j * pred_strd]; in ihevc_recon_4x4()
206 CLIP_U8(pi2_src[j * src_strd] + pu1_pred[j * pred_strd]); in ihevc_recon_4x4()
211 pu1_pred++; in ihevc_recon_4x4()
259 UWORD8 *pu1_pred, in ihevc_recon_8x8() argument
280 pu1_dst[j * dst_strd] = pu1_pred[j * pred_strd]; in ihevc_recon_8x8()
[all …]
Dihevc_iquant_recon.c106 UWORD8 *pu1_pred, in ihevc_iquant_recon_4x4_ttype1() argument
140 pu1_dst[j * dst_strd] = pu1_pred[j * pred_strd]; in ihevc_iquant_recon_4x4_ttype1()
154 CLIP_U8(iquant_out + pu1_pred[j * pred_strd]); in ihevc_iquant_recon_4x4_ttype1()
159 pu1_pred++; in ihevc_iquant_recon_4x4_ttype1()
218 UWORD8 *pu1_pred, in ihevc_iquant_recon_4x4() argument
252 pu1_dst[j * dst_strd] = pu1_pred[j * pred_strd]; in ihevc_iquant_recon_4x4()
265 CLIP_U8(iquant_out + pu1_pred[j * pred_strd]); in ihevc_iquant_recon_4x4()
270 pu1_pred++; in ihevc_iquant_recon_4x4()
329 UWORD8 *pu1_pred, in ihevc_iquant_recon_8x8() argument
363 pu1_dst[j * dst_strd] = pu1_pred[j * pred_strd]; in ihevc_iquant_recon_8x8()
[all …]
Dihevc_chroma_recon.c104 UWORD8 *pu1_pred, in ihevc_chroma_recon_4x4() argument
125 pu1_dst[j * dst_strd] = pu1_pred[j * pred_strd]; in ihevc_chroma_recon_4x4()
133 CLIP_U8(pi2_src[j * src_strd] + pu1_pred[j * pred_strd]); in ihevc_chroma_recon_4x4()
138 pu1_pred += 2; in ihevc_chroma_recon_4x4()
187 UWORD8 *pu1_pred, in ihevc_chroma_recon_8x8() argument
208 pu1_dst[j * dst_strd] = pu1_pred[j * pred_strd]; in ihevc_chroma_recon_8x8()
216 CLIP_U8(pi2_src[j * src_strd] + pu1_pred[j * pred_strd]); in ihevc_chroma_recon_8x8()
221 pu1_pred += 2; in ihevc_chroma_recon_8x8()
270 UWORD8 *pu1_pred, in ihevc_chroma_recon_16x16() argument
291 pu1_dst[j * dst_strd] = pu1_pred[j * pred_strd]; in ihevc_chroma_recon_16x16()
[all …]
Dihevc_chroma_iquant_recon.c112 UWORD8 *pu1_pred, in ihevc_chroma_iquant_recon_4x4() argument
146 pu1_dst[j * dst_strd] = pu1_pred[j * pred_strd]; in ihevc_chroma_iquant_recon_4x4()
159 CLIP_U8(iquant_out + pu1_pred[j * pred_strd]); in ihevc_chroma_iquant_recon_4x4()
164 pu1_pred += 2; in ihevc_chroma_iquant_recon_4x4()
224 UWORD8 *pu1_pred, in ihevc_chroma_iquant_recon_8x8() argument
258 pu1_dst[j * dst_strd] = pu1_pred[j * pred_strd]; in ihevc_chroma_iquant_recon_8x8()
271 CLIP_U8(iquant_out + pu1_pred[j * pred_strd]); in ihevc_chroma_iquant_recon_8x8()
276 pu1_pred += 2; in ihevc_chroma_iquant_recon_8x8()
336 UWORD8 *pu1_pred, in ihevc_chroma_iquant_recon_16x16() argument
371 pu1_dst[j * dst_strd] = pu1_pred[j * pred_strd]; in ihevc_chroma_iquant_recon_16x16()
[all …]
Dihevc_itrans_recon.c101 UWORD8 *pu1_pred, in ihevc_itrans_recon_4x4_ttype1() argument
169 pu1_dst[0] = CLIP_U8((itrans_out + pu1_pred[0])); in ihevc_itrans_recon_4x4_ttype1()
172 pu1_dst[1] = CLIP_U8((itrans_out + pu1_pred[1])); in ihevc_itrans_recon_4x4_ttype1()
175 pu1_dst[2] = CLIP_U8((itrans_out + pu1_pred[2])); in ihevc_itrans_recon_4x4_ttype1()
178 pu1_dst[3] = CLIP_U8((itrans_out + pu1_pred[3])); in ihevc_itrans_recon_4x4_ttype1()
180 pu1_pred += pred_strd; in ihevc_itrans_recon_4x4_ttype1()
236 UWORD8 *pu1_pred, in ihevc_itrans_recon_4x4() argument
316 pu1_dst[0] = CLIP_U8((itrans_out + pu1_pred[0])); in ihevc_itrans_recon_4x4()
319 pu1_dst[1] = CLIP_U8((itrans_out + pu1_pred[1])); in ihevc_itrans_recon_4x4()
322 pu1_dst[2] = CLIP_U8((itrans_out + pu1_pred[2])); in ihevc_itrans_recon_4x4()
[all …]
Dihevc_resi_trans.c97 UWORD8 *pu1_pred, in ihevc_resi_trans_4x4_ttype1() argument
129 resi_tmp_1 = pu1_src[0] - pu1_pred[0]; in ihevc_resi_trans_4x4_ttype1()
130 resi_tmp_2 = pu1_src[3] - pu1_pred[3]; in ihevc_resi_trans_4x4_ttype1()
134 resi_tmp_1 = pu1_src[1] - pu1_pred[1]; in ihevc_resi_trans_4x4_ttype1()
135 resi_tmp_2 = pu1_src[3] - pu1_pred[3]; in ihevc_resi_trans_4x4_ttype1()
139 resi_tmp_1 = pu1_src[0] - pu1_pred[0]; in ihevc_resi_trans_4x4_ttype1()
140 resi_tmp_2 = pu1_src[1] - pu1_pred[1]; in ihevc_resi_trans_4x4_ttype1()
143 resi_tmp_1 = pu1_src[2] - pu1_pred[2]; in ihevc_resi_trans_4x4_ttype1()
149 resi_tmp_1 = pu1_src[0] - pu1_pred[0]; in ihevc_resi_trans_4x4_ttype1()
150 resi_tmp_2 = pu1_src[1] - pu1_pred[1]; in ihevc_resi_trans_4x4_ttype1()
[all …]
Dihevc_chroma_itrans_recon_16x16.c110 UWORD8 *pu1_pred, in ihevc_chroma_itrans_recon_16x16() argument
238 pu1_dst[k * 2] = CLIP_U8((itrans_out + pu1_pred[k * 2])); in ihevc_chroma_itrans_recon_16x16()
241 pu1_dst[(k + 8) * 2] = CLIP_U8((itrans_out + pu1_pred[(k + 8) * 2])); in ihevc_chroma_itrans_recon_16x16()
244 pu1_pred += pred_strd; in ihevc_chroma_itrans_recon_16x16()
290 pu1_dst[k * 2] = CLIP_U8((itrans_out + pu1_pred[k * 2])); in ihevc_chroma_itrans_recon_16x16()
293 pu1_dst[(k + 8) * 2] = CLIP_U8((itrans_out + pu1_pred[(k + 8) * 2])); in ihevc_chroma_itrans_recon_16x16()
296 pu1_pred += pred_strd; in ihevc_chroma_itrans_recon_16x16()
364 pu1_dst[k * 2] = CLIP_U8((itrans_out + pu1_pred[k * 2])); in ihevc_chroma_itrans_recon_16x16()
367 pu1_dst[(k + 8) * 2] = CLIP_U8((itrans_out + pu1_pred[(k + 8) * 2])); in ihevc_chroma_itrans_recon_16x16()
370 pu1_pred += pred_strd; in ihevc_chroma_itrans_recon_16x16()
[all …]
Dihevc_itrans_recon_16x16.c100 UWORD8 *pu1_pred, in ihevc_itrans_recon_16x16() argument
229 pu1_dst[k] = CLIP_U8((itrans_out + pu1_pred[k])); in ihevc_itrans_recon_16x16()
232 pu1_dst[k + 8] = CLIP_U8((itrans_out + pu1_pred[k + 8])); in ihevc_itrans_recon_16x16()
235 pu1_pred += pred_strd; in ihevc_itrans_recon_16x16()
281 pu1_dst[k] = CLIP_U8((itrans_out + pu1_pred[k])); in ihevc_itrans_recon_16x16()
284 pu1_dst[k + 8] = CLIP_U8((itrans_out + pu1_pred[k + 8])); in ihevc_itrans_recon_16x16()
287 pu1_pred += pred_strd; in ihevc_itrans_recon_16x16()
355 pu1_dst[k] = CLIP_U8((itrans_out + pu1_pred[k])); in ihevc_itrans_recon_16x16()
358 pu1_dst[k + 8] = CLIP_U8((itrans_out + pu1_pred[k + 8])); in ihevc_itrans_recon_16x16()
361 pu1_pred += pred_strd; in ihevc_itrans_recon_16x16()
[all …]
Dihevc_itrans_recon_8x8.c100 UWORD8 *pu1_pred, in ihevc_itrans_recon_8x8() argument
207 pu1_dst[k] = CLIP_U8((itrans_out + pu1_pred[k])); in ihevc_itrans_recon_8x8()
210 pu1_dst[k + 4] = CLIP_U8((itrans_out + pu1_pred[k + 4])); in ihevc_itrans_recon_8x8()
213 pu1_pred += pred_strd; in ihevc_itrans_recon_8x8()
252 pu1_dst[k] = CLIP_U8((itrans_out + pu1_pred[k])); in ihevc_itrans_recon_8x8()
255 pu1_dst[k + 4] = CLIP_U8((itrans_out + pu1_pred[k + 4])); in ihevc_itrans_recon_8x8()
258 pu1_pred += pred_strd; in ihevc_itrans_recon_8x8()
354 pu1_dst[k] = CLIP_U8((itrans_out + pu1_pred[k])); in ihevc_itrans_recon_8x8()
357 pu1_dst[k + 4] = CLIP_U8((itrans_out + pu1_pred[k + 4])); in ihevc_itrans_recon_8x8()
360 pu1_pred += pred_strd; in ihevc_itrans_recon_8x8()
[all …]
Dihevc_iquant_itrans_recon.c111 UWORD8 *pu1_pred, in ihevc_iquant_itrans_recon_4x4_ttype1() argument
241 pu1_dst[0] = CLIP_U8((itrans_out + pu1_pred[0])); in ihevc_iquant_itrans_recon_4x4_ttype1()
245 pu1_dst[1] = CLIP_U8((itrans_out + pu1_pred[1])); in ihevc_iquant_itrans_recon_4x4_ttype1()
249 pu1_dst[2] = CLIP_U8((itrans_out + pu1_pred[2])); in ihevc_iquant_itrans_recon_4x4_ttype1()
253 pu1_dst[3] = CLIP_U8((itrans_out + pu1_pred[3])); in ihevc_iquant_itrans_recon_4x4_ttype1()
255 pu1_pred += pred_strd; in ihevc_iquant_itrans_recon_4x4_ttype1()
319 UWORD8 *pu1_pred, in ihevc_iquant_itrans_recon_4x4() argument
436 pu1_dst[0] = CLIP_U8((itrans_out + pu1_pred[0])); in ihevc_iquant_itrans_recon_4x4()
440 pu1_dst[1] = CLIP_U8((itrans_out + pu1_pred[1])); in ihevc_iquant_itrans_recon_4x4()
444 pu1_dst[2] = CLIP_U8((itrans_out + pu1_pred[2])); in ihevc_iquant_itrans_recon_4x4()
[all …]
Dihevc_resi_trans.h40 UWORD8 *pu1_pred,
57 UWORD8 *pu1_pred,
77 UWORD8 *pu1_pred,
98 UWORD8 *pu1_pred,
115 UWORD8 *pu1_pred,
133 UWORD8 *pu1_pred,
141 UWORD8 *pu1_pred,
149 UWORD8 *pu1_pred,
157 UWORD8 *pu1_pred,
Dihevc_chroma_itrans_recon.c109 UWORD8 *pu1_pred, in ihevc_chroma_itrans_recon_4x4() argument
188 pu1_dst[0 * 2] = CLIP_U8((itrans_out + pu1_pred[0 * 2])); in ihevc_chroma_itrans_recon_4x4()
191 pu1_dst[1 * 2] = CLIP_U8((itrans_out + pu1_pred[1 * 2])); in ihevc_chroma_itrans_recon_4x4()
194 pu1_dst[2 * 2] = CLIP_U8((itrans_out + pu1_pred[2 * 2])); in ihevc_chroma_itrans_recon_4x4()
197 pu1_dst[3 * 2] = CLIP_U8((itrans_out + pu1_pred[3 * 2])); in ihevc_chroma_itrans_recon_4x4()
200 pu1_pred += pred_strd; in ihevc_chroma_itrans_recon_4x4()
Dihevc_itrans_recon_32x32.c101 UWORD8 *pu1_pred, in ihevc_itrans_recon_32x32() argument
252 pu1_dst[k] = CLIP_U8((itrans_out + pu1_pred[k])); in ihevc_itrans_recon_32x32()
255 pu1_dst[k + 16] = CLIP_U8((itrans_out + pu1_pred[k + 16])); in ihevc_itrans_recon_32x32()
258 pu1_pred += pred_strd; in ihevc_itrans_recon_32x32()
312 pu1_dst[k] = CLIP_U8((itrans_out + pu1_pred[k])); in ihevc_itrans_recon_32x32()
315 pu1_dst[k + 16] = CLIP_U8((itrans_out + pu1_pred[k + 16])); in ihevc_itrans_recon_32x32()
318 pu1_pred += pred_strd; in ihevc_itrans_recon_32x32()
430 pu1_dst[k] = CLIP_U8((itrans_out + pu1_pred[k])); in ihevc_itrans_recon_32x32()
433 pu1_dst[k + 16] = CLIP_U8((itrans_out + pu1_pred[k + 16])); in ihevc_itrans_recon_32x32()
436 pu1_pred += pred_strd; in ihevc_itrans_recon_32x32()
[all …]
/external/libhevc/decoder/x86/
Dihevcd_it_rec_dc_sse42_intr.c47 void ihevcd_itrans_recon_dc_luma_sse42(UWORD8 *pu1_pred, UWORD8 *pu1_dst, WORD32 pred_strd, WORD32 … in ihevcd_itrans_recon_dc_luma_sse42() argument
97 m_temp_reg_0 = _mm_loadl_epi64((__m128i *)(pu1_pred)); in ihevcd_itrans_recon_dc_luma_sse42()
98 m_temp_reg_1 = _mm_loadl_epi64((__m128i *)(pu1_pred + pred_strd)); in ihevcd_itrans_recon_dc_luma_sse42()
99 m_temp_reg_2 = _mm_loadl_epi64((__m128i *)(pu1_pred + 2 * pred_strd)); in ihevcd_itrans_recon_dc_luma_sse42()
100 m_temp_reg_3 = _mm_loadl_epi64((__m128i *)(pu1_pred + 3 * pred_strd)); in ihevcd_itrans_recon_dc_luma_sse42()
140 m_temp_reg_0 = _mm_loadl_epi64((__m128i *)pu1_pred); in ihevcd_itrans_recon_dc_luma_sse42()
141 m_temp_reg_1 = _mm_loadl_epi64((__m128i *)(pu1_pred + pred_strd)); in ihevcd_itrans_recon_dc_luma_sse42()
142 m_temp_reg_2 = _mm_loadl_epi64((__m128i *)(pu1_pred + 2 * pred_strd)); in ihevcd_itrans_recon_dc_luma_sse42()
143 m_temp_reg_3 = _mm_loadl_epi64((__m128i *)(pu1_pred + 3 * pred_strd)); in ihevcd_itrans_recon_dc_luma_sse42()
176 pu1_pred += 8; in ihevcd_itrans_recon_dc_luma_sse42()
[all …]
Dihevcd_it_rec_dc_ssse3_intr.c49 void ihevcd_itrans_recon_dc_luma_ssse3(UWORD8 *pu1_pred, UWORD8 *pu1_dst, WORD32 pred_strd, WORD32 … in ihevcd_itrans_recon_dc_luma_ssse3() argument
98 m_temp_reg_0 = _mm_loadl_epi64((__m128i *)(pu1_pred)); in ihevcd_itrans_recon_dc_luma_ssse3()
99 m_temp_reg_1 = _mm_loadl_epi64((__m128i *)(pu1_pred + pred_strd)); in ihevcd_itrans_recon_dc_luma_ssse3()
100 m_temp_reg_2 = _mm_loadl_epi64((__m128i *)(pu1_pred + 2 * pred_strd)); in ihevcd_itrans_recon_dc_luma_ssse3()
101 m_temp_reg_3 = _mm_loadl_epi64((__m128i *)(pu1_pred + 3 * pred_strd)); in ihevcd_itrans_recon_dc_luma_ssse3()
141 m_temp_reg_0 = _mm_loadl_epi64((__m128i *)pu1_pred); in ihevcd_itrans_recon_dc_luma_ssse3()
142 m_temp_reg_1 = _mm_loadl_epi64((__m128i *)(pu1_pred + pred_strd)); in ihevcd_itrans_recon_dc_luma_ssse3()
143 m_temp_reg_2 = _mm_loadl_epi64((__m128i *)(pu1_pred + 2 * pred_strd)); in ihevcd_itrans_recon_dc_luma_ssse3()
144 m_temp_reg_3 = _mm_loadl_epi64((__m128i *)(pu1_pred + 3 * pred_strd)); in ihevcd_itrans_recon_dc_luma_ssse3()
177 pu1_pred += 8; in ihevcd_itrans_recon_dc_luma_ssse3()
[all …]
/external/libavc/common/x86/
Dih264_iquant_itrans_recon_dc_ssse3.c102 UWORD8 *pu1_pred, in ih264_iquant_itrans_recon_4x4_dc_ssse3() argument
136 …predload_r = _mm_loadl_epi64((__m128i *) (&pu1_pred[0])); //p00 p01 p02 p03 0 0 0 0 0 0 0 0 -- all… in ih264_iquant_itrans_recon_4x4_dc_ssse3()
138 …predload_r = _mm_loadl_epi64((__m128i *) (&pu1_pred[pred_strd])); //p10 p11 p12 p13 0 0 0 0 0 0 0 … in ih264_iquant_itrans_recon_4x4_dc_ssse3()
140 …predload_r = _mm_loadl_epi64((__m128i *) (&pu1_pred[2*pred_strd])); //p20 p21 p22 p23 0 0 0 0 0 0 … in ih264_iquant_itrans_recon_4x4_dc_ssse3()
142 …predload_r = _mm_loadl_epi64((__m128i *) (&pu1_pred[3*pred_strd])); //p30 p31 p32 p33 0 0 0 0 0 0 … in ih264_iquant_itrans_recon_4x4_dc_ssse3()
228 UWORD8 *pu1_pred, in ih264_iquant_itrans_recon_8x8_dc_ssse3() argument
258 …predload_r = _mm_loadl_epi64((__m128i *)(&pu1_pred[0])); //p0 p1 p2 p3 p4 p5 p6 p7 0 0 0 0 0 0 0 0… in ih264_iquant_itrans_recon_8x8_dc_ssse3()
261 …predload_r = _mm_loadl_epi64((__m128i *)(&pu1_pred[pred_strd])); //p0 p1 p2 p3 p4 p5 p6 p7 0 0 0 0… in ih264_iquant_itrans_recon_8x8_dc_ssse3()
265 … (__m128i *)(&pu1_pred[2 * pred_strd])); //p0 p1 p2 p3 p4 p5 p6 p7 0 0 0 0 0 0 0 0 -- all 8 bits in ih264_iquant_itrans_recon_8x8_dc_ssse3()
269 … (__m128i *)(&pu1_pred[3 * pred_strd])); //p0 p1 p2 p3 p4 p5 p6 p7 0 0 0 0 0 0 0 0 -- all 8 bits in ih264_iquant_itrans_recon_8x8_dc_ssse3()
[all …]
/external/libmpeg2/common/
Dimpeg2_idct.c64 UWORD8 *pu1_pred, in impeg2_idct_recon_dc() argument
88 pu1_dst[j] = CLIP_U8(i4_val + pu1_pred[j]); in impeg2_idct_recon_dc()
91 pu1_pred += i4_pred_strd; in impeg2_idct_recon_dc()
96 UWORD8 *pu1_pred, in impeg2_idct_recon_dc_mismatch() argument
125 i4_sum += pu1_pred[j]; in impeg2_idct_recon_dc_mismatch()
131 pu1_pred += i4_pred_strd; in impeg2_idct_recon_dc_mismatch()
186 UWORD8 *pu1_pred, in impeg2_idct_recon() argument
293 pu1_dst[k] = CLIP_U8((itrans_out + pu1_pred[k])); in impeg2_idct_recon()
296 pu1_dst[k + 4] = CLIP_U8((itrans_out + pu1_pred[k + 4])); in impeg2_idct_recon()
299 pu1_pred += i4_pred_strd; in impeg2_idct_recon()
[all …]
/external/libavc/common/
Dih264_iquant_itrans_recon.c107 UWORD8 *pu1_pred, in ih264_iquant_itrans_recon_4x4() argument
121 UWORD8 *pu1_pred_ptr = pu1_pred; in ih264_iquant_itrans_recon_4x4()
171 pu1_pred_ptr = pu1_pred; in ih264_iquant_itrans_recon_4x4()
208 pu1_pred++; in ih264_iquant_itrans_recon_4x4()
214 UWORD8 *pu1_pred, in ih264_iquant_itrans_recon_4x4_dc() argument
225 UWORD8 *pu1_pred_ptr = pu1_pred; in ih264_iquant_itrans_recon_4x4_dc()
244 pu1_pred_ptr = pu1_pred; in ih264_iquant_itrans_recon_4x4_dc()
268 pu1_pred++; in ih264_iquant_itrans_recon_4x4_dc()
324 UWORD8 *pu1_pred, in ih264_iquant_itrans_recon_8x8() argument
338 UWORD8 *pu1_pred_ptr = pu1_pred; in ih264_iquant_itrans_recon_8x8()
[all …]
Dih264_resi_trans_quant.c113 UWORD8 *pu1_pred, in ih264_resi_trans_quant_4x4() argument
134 x4 = pu1_src[0] - pu1_pred[0]; in ih264_resi_trans_quant_4x4()
135 x5 = pu1_src[1] - pu1_pred[1]; in ih264_resi_trans_quant_4x4()
136 x6 = pu1_src[2] - pu1_pred[2]; in ih264_resi_trans_quant_4x4()
137 x7 = pu1_src[3] - pu1_pred[3]; in ih264_resi_trans_quant_4x4()
152 pu1_pred += pred_strd; in ih264_resi_trans_quant_4x4()
261 UWORD8 *pu1_pred, in ih264_resi_trans_quant_chroma_4x4() argument
282 x4 = pu1_src[0] - pu1_pred[0]; in ih264_resi_trans_quant_chroma_4x4()
283 x5 = pu1_src[2] - pu1_pred[2]; in ih264_resi_trans_quant_chroma_4x4()
284 x6 = pu1_src[4] - pu1_pred[4]; in ih264_resi_trans_quant_chroma_4x4()
[all …]
Dih264_trans_quant_itrans_iquant.h45 UWORD8 *pu1_pred,
57 UWORD8 *pu1_pred,
71 UWORD8 *pu1_pred,
83 UWORD8 *pu1_pred,
96 UWORD8 *pu1_pred,
108 UWORD8 *pu1_pred,
121 UWORD8 *pu1_pred,
133 UWORD8 *pu1_pred,
146 UWORD8 *pu1_pred,
/external/libhevc/encoder/
Dihevce_had_satd.c99 UWORD8 *pu1_pred, in ihevce_hadamard_4x4_8bit() argument
114 r0 = pu1_src[0] - pu1_pred[0]; in ihevce_hadamard_4x4_8bit()
115 r1 = pu1_src[1] - pu1_pred[1]; in ihevce_hadamard_4x4_8bit()
116 r2 = pu1_src[2] - pu1_pred[2]; in ihevce_hadamard_4x4_8bit()
117 r3 = pu1_src[3] - pu1_pred[3]; in ihevce_hadamard_4x4_8bit()
129 pu1_pred += pred_strd; in ihevce_hadamard_4x4_8bit()
153 UWORD8 *pu1_pred, in ihevce_hadamard_8x8_8bit() argument
161 ihevce_hadamard_4x4_8bit(pu1_src, src_strd, pu1_pred, pred_strd, pi2_dst, dst_strd); in ihevce_hadamard_8x8_8bit()
163 ihevce_hadamard_4x4_8bit(pu1_src + 4, src_strd, pu1_pred + 4, pred_strd, pi2_dst + 4, dst_strd); in ihevce_hadamard_8x8_8bit()
168 pu1_pred + 4 * pred_strd, in ihevce_hadamard_8x8_8bit()
[all …]

1234