Searched refs:bsizex (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 193 bsizex = 3 - xdec; in cdef_filter_fb() 206 for (ix = 0; ix < 1 << bsizex; ix++) 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() 250 dirinit ? 1 << bsizex : dstride, in cdef_filter_fb() [all …]
|
/external/libaom/libaom/examples/ |
D | encoder_util.c | 32 const uint32_t bsizex = is_y_plane ? bsize : bsize >> img1->x_chroma_shift; in find_mismatch_plane() local 48 for (j = 0; match && j < c_w; j += bsizex) { in find_mismatch_plane() 52 is_y_plane ? mmin(j + bsizex, c_w) - j : mmin(j + bsizex, c_w - j); in find_mismatch_plane()
|
/external/libvpx/libvpx/examples/ |
D | vp9cx_set_ref.c | 108 const uint32_t bsizex = bsize >> img1->x_chroma_shift; in find_mismatch() local 143 for (j = 0; match && j < c_w; j += bsizex) { in find_mismatch() 146 const int sj = mmin(j + bsizex, c_w - j); in find_mismatch() 168 for (j = 0; match && j < c_w; j += bsizex) { in find_mismatch() 171 const int sj = mmin(j + bsizex, c_w - j); in find_mismatch()
|
/external/libvpx/libvpx/ |
D | vpxenc.c | 624 const uint32_t bsizex = bsize >> img1->x_chroma_shift; in find_mismatch_high() local 663 for (j = 0; match && j < c_w; j += bsizex) { in find_mismatch_high() 666 const int sj = mmin(j + bsizex, c_w - j); in find_mismatch_high() 689 for (j = 0; match && j < c_w; j += bsizex) { in find_mismatch_high() 692 const int sj = mmin(j + bsizex, c_w - j); in find_mismatch_high() 716 const uint32_t bsizex = bsize >> img1->x_chroma_shift; in find_mismatch() local 751 for (j = 0; match && j < c_w; j += bsizex) { in find_mismatch() 754 const int sj = mmin(j + bsizex, c_w - j); in find_mismatch() 776 for (j = 0; match && j < c_w; j += bsizex) { in find_mismatch() 779 const int sj = mmin(j + bsizex, c_w - j); in find_mismatch()
|