• Home
  • Raw
  • Download

Lines Matching refs:pu1_dst

119 …  UWORD8 *pu1_dst, WORD32 dst_strd, UWORD8 *pu1_src, WORD32 src_strd, WORD32 blk_wd, WORD32 blk_ht)  in copy_2d_neon()  argument
127 memcpy(pu1_dst, pu1_src, 4); in copy_2d_neon()
129 pu1_dst += dst_strd; in copy_2d_neon()
138 vst1_u8(pu1_dst, src); in copy_2d_neon()
140 pu1_dst += dst_strd; in copy_2d_neon()
149 vst1q_u8(pu1_dst, src); in copy_2d_neon()
151 pu1_dst += dst_strd; in copy_2d_neon()
162 vst1q_u8(pu1_dst, src_0); in copy_2d_neon()
164 vst1q_u8(pu1_dst + 16, src_1); in copy_2d_neon()
166 pu1_dst += dst_strd; in copy_2d_neon()
175 UWORD8 *dst_ol = pu1_dst + j * dst_strd; in copy_2d_neon()
205 UWORD8 *pu1_dst = (UWORD8 *)p_dst; in ihevce_2d_square_copy_luma_neon() local
209 pu1_dst, in ihevce_2d_square_copy_luma_neon()
218 … UWORD8 *pu1_dst, WORD32 dst_strd, UWORD8 *pu1_src, WORD32 src_strd, WORD32 blk_wd, WORD32 blk_ht) in ihevce_copy_2d_neon() argument
225 copy_2d_neon(pu1_dst, dst_strd, pu1_src, src_strd, 64, blk_ht); in ihevce_copy_2d_neon()
226 ihevce_copy_2d_neon(pu1_dst + 64, dst_strd, pu1_src + 64, src_strd, blk_wd - 64, blk_ht); in ihevce_copy_2d_neon()
230 copy_2d_neon(pu1_dst, dst_strd, pu1_src, src_strd, 32, blk_ht); in ihevce_copy_2d_neon()
231 ihevce_copy_2d_neon(pu1_dst + 32, dst_strd, pu1_src + 32, src_strd, blk_wd - 32, blk_ht); in ihevce_copy_2d_neon()
237 copy_2d_neon(pu1_dst, dst_strd, pu1_src, src_strd, 16, blk_ht); in ihevce_copy_2d_neon()
239 pu1_dst + 16, dst_strd, pu1_src + 16, src_strd, blk_wd - 16, blk_ht); in ihevce_copy_2d_neon()
243 copy_2d_neon(pu1_dst, dst_strd, pu1_src, src_strd, 16, blk_ht - 1); in ihevce_copy_2d_neon()
244 memcpy(pu1_dst + (blk_ht - 1) * dst_strd, pu1_src + (blk_ht - 1) * src_strd, blk_wd); in ihevce_copy_2d_neon()
246 pu1_dst + 16, dst_strd, pu1_src + 16, src_strd, blk_wd - 16, blk_ht - 1); in ihevce_copy_2d_neon()
253 copy_2d_neon(pu1_dst, dst_strd, pu1_src, src_strd, 8, blk_ht); in ihevce_copy_2d_neon()
254 ihevce_copy_2d_neon(pu1_dst + 8, dst_strd, pu1_src + 8, src_strd, blk_wd - 8, blk_ht); in ihevce_copy_2d_neon()
258 copy_2d_neon(pu1_dst, dst_strd, pu1_src, src_strd, 8, blk_ht - 1); in ihevce_copy_2d_neon()
259 memcpy(pu1_dst + (blk_ht - 1) * dst_strd, pu1_src + (blk_ht - 1) * src_strd, blk_wd); in ihevce_copy_2d_neon()
261 pu1_dst + 8, dst_strd, pu1_src + 8, src_strd, blk_wd - 8, blk_ht - 1); in ihevce_copy_2d_neon()
268 copy_2d_neon(pu1_dst, dst_strd, pu1_src, src_strd, 4, blk_ht); in ihevce_copy_2d_neon()
269 ihevce_copy_2d_neon(pu1_dst + 4, dst_strd, pu1_src + 4, src_strd, blk_wd - 4, blk_ht); in ihevce_copy_2d_neon()
273 copy_2d_neon(pu1_dst, dst_strd, pu1_src, src_strd, 4, blk_ht - 1); in ihevce_copy_2d_neon()
274 memcpy(pu1_dst + (blk_ht - 1) * dst_strd, pu1_src + (blk_ht - 1) * src_strd, blk_wd); in ihevce_copy_2d_neon()
276 pu1_dst + 4, dst_strd, pu1_src + 4, src_strd, blk_wd - 4, blk_ht - 1); in ihevce_copy_2d_neon()
281 ihevce_copy_2d(pu1_dst, dst_strd, pu1_src, src_strd, blk_wd, blk_ht); in ihevce_copy_2d_neon()