Searched refs:mask_8x8 (Results 1 – 3 of 3) sorted by relevance
/external/libaom/libaom/aom_dsp/arm/ |
D | loopfilter_neon.c | 28 uint8x8_t mask_8x8, temp_8x8; in lpf_mask() local 32 mask_8x8 = vabd_u8(p3q3, p2q2); in lpf_mask() 33 mask_8x8 = vmax_u8(mask_8x8, vabd_u8(p2q2, p1q1)); in lpf_mask() 34 mask_8x8 = vmax_u8(mask_8x8, vabd_u8(p1q1, p0q0)); in lpf_mask() 35 mask_8x8 = vcle_u8(mask_8x8, limit_8x8); in lpf_mask() 37 temp_8x8 = vreinterpret_u8_u32(vrev64_u32(vreinterpret_u32_u8(mask_8x8))); in lpf_mask() 38 mask_8x8 = vand_u8(mask_8x8, temp_8x8); in lpf_mask() 50 mask_8x8 = vand_u8(mask_8x8, temp_8x8); in lpf_mask() 52 return mask_8x8; in lpf_mask() 62 uint8x8_t mask_8x8, temp_8x8; in lpf_mask2() local [all …]
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_loopfilter.c | 299 unsigned int mask_8x8, unsigned int mask_4x4, unsigned int mask_4x4_int, in filter_selectively_vert_row2() argument 309 (mask_16x16 | mask_8x8 | mask_4x4 | mask_4x4_int) & dual_mask_cutoff; in filter_selectively_vert_row2() 328 if (mask_8x8 & dual_one) { in filter_selectively_vert_row2() 329 if ((mask_8x8 & dual_one) == dual_one) { in filter_selectively_vert_row2() 334 const loop_filter_thresh *lfi = lfis[!(mask_8x8 & 1)]; in filter_selectively_vert_row2() 335 vpx_lpf_vertical_8(ss[!(mask_8x8 & 1)], pitch, lfi->mblim, lfi->lim, in filter_selectively_vert_row2() 368 mask_8x8 >>= 1; in filter_selectively_vert_row2() 377 unsigned int mask_8x8, unsigned int mask_4x4, unsigned int mask_4x4_int, in highbd_filter_selectively_vert_row2() argument 387 (mask_16x16 | mask_8x8 | mask_4x4 | mask_4x4_int) & dual_mask_cutoff; in highbd_filter_selectively_vert_row2() 406 if (mask_8x8 & dual_one) { in highbd_filter_selectively_vert_row2() [all …]
|
/external/libaom/libaom/av1/common/ |
D | loopfiltermask.c | 615 uint64_t mask_8x8, uint64_t mask_4x4, in filter_selectively_horiz() argument 624 for (mask = mask_16x16 | mask_8x8 | mask_4x4; mask; mask >>= step * count) { in filter_selectively_horiz() 655 } else if (mask_8x8 & 1) { in filter_selectively_horiz() 661 if ((mask_8x8 & two_block_mask) == two_block_mask) { in filter_selectively_horiz() 690 mask_8x8 >>= step * count; in filter_selectively_horiz() 699 uint64_t mask_8x8, uint64_t mask_4x4, const loop_filter_info_n *lfi_n, in highbd_filter_selectively_horiz() argument 707 for (mask = mask_16x16 | mask_8x8 | mask_4x4; mask; mask >>= step * count) { in highbd_filter_selectively_horiz() 737 } else if (mask_8x8 & 1) { in highbd_filter_selectively_horiz() 741 if ((mask_8x8 & two_block_mask) == two_block_mask) { in highbd_filter_selectively_horiz() 772 mask_8x8 >>= step * count; in highbd_filter_selectively_horiz() [all …]
|