Searched refs:bsizey (Results 1 – 4 of 4) sorted by relevance
/external/libaom/libaom/av1/common/ |
D | cdef_block.c | 185 int bsize, bsizex, bsizey; in cdef_filter_fb() local 194 bsizey = 3 - ydec; in cdef_filter_fb() 205 for (iy = 0; iy < 1 << bsizey; iy++) in cdef_filter_fb() 207 dst16[(bi << (bsizex + bsizey)) + (iy << bsizex) + ix] = in cdef_filter_fb() 208 in[((by << bsizey) + iy) * CDEF_BSTRIDE + (bx << bsizex) + ix]; in cdef_filter_fb() 241 &dst8[(by << bsizey) * dstride + (bx << bsizex)], NULL, dstride, in cdef_filter_fb() 242 &in[(by * CDEF_BSTRIDE << bsizey) + (bx << bsizex)], in cdef_filter_fb() 248 &dst16[dirinit ? bi << (bsizex + bsizey) in cdef_filter_fb() 249 : (by << bsizey) * dstride + (bx << bsizex)], in cdef_filter_fb() 251 &in[(by * CDEF_BSTRIDE << bsizey) + (bx << bsizex)], in cdef_filter_fb()
|
/external/libaom/libaom/examples/ |
D | encoder_util.c | 33 const uint32_t bsizey = is_y_plane ? bsize : bsize >> img1->y_chroma_shift; in find_mismatch_plane() local 47 for (i = 0; match && i < c_h; i += bsizey) { in find_mismatch_plane() 50 is_y_plane ? mmin(i + bsizey, c_h) - i : mmin(i + bsizey, c_h - i); in find_mismatch_plane()
|
/external/libvpx/libvpx/examples/ |
D | vp9cx_set_ref.c | 107 const uint32_t bsizey = bsize >> img1->y_chroma_shift; in find_mismatch() local 142 for (i = 0, match = 1; match && i < c_h; i += bsizey) { in find_mismatch() 145 const int si = mmin(i + bsizey, c_h - i); in find_mismatch() 167 for (i = 0, match = 1; match && i < c_h; i += bsizey) { in find_mismatch() 170 const int si = mmin(i + bsizey, c_h - i); in find_mismatch()
|
/external/libvpx/libvpx/ |
D | vpxenc.c | 623 const uint32_t bsizey = bsize >> img1->y_chroma_shift; in find_mismatch_high() local 662 for (i = 0, match = 1; match && i < c_h; i += bsizey) { in find_mismatch_high() 665 const int si = mmin(i + bsizey, c_h - i); in find_mismatch_high() 688 for (i = 0, match = 1; match && i < c_h; i += bsizey) { in find_mismatch_high() 691 const int si = mmin(i + bsizey, c_h - i); in find_mismatch_high() 715 const uint32_t bsizey = bsize >> img1->y_chroma_shift; in find_mismatch() local 750 for (i = 0, match = 1; match && i < c_h; i += bsizey) { in find_mismatch() 753 const int si = mmin(i + bsizey, c_h - i); in find_mismatch() 775 for (i = 0, match = 1; match && i < c_h; i += bsizey) { in find_mismatch() 778 const int si = mmin(i + bsizey, c_h - i); in find_mismatch()
|