• Home
  • Raw
  • Download

Lines Matching refs:blk_ht

119 …  UWORD8 *pu1_dst, WORD32 dst_strd, UWORD8 *pu1_src, WORD32 src_strd, WORD32 blk_wd, WORD32 blk_ht)  in copy_2d_neon()  argument
125 for(; blk_ht > 0; blk_ht--) in copy_2d_neon()
134 for(; blk_ht > 0; blk_ht--) in copy_2d_neon()
145 for(; blk_ht > 0; blk_ht--) in copy_2d_neon()
156 for(; blk_ht > 0; blk_ht--) in copy_2d_neon()
173 for(j = 0; j < blk_ht; j += 1) in copy_2d_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()
235 if(blk_ht % 2 == 0) 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()
251 if(blk_ht % 2 == 0) 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()
266 if(blk_ht % 2 == 0) 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()