Home
last modified time | relevance | path

Searched refs:uv_size (Results 1 – 3 of 3) sorted by relevance

/external/webp/src/dec/
Dbuffer.c87 uint64_t uv_size = 0, a_size = 0, total_size; in AllocateBuffer() local
95 uv_size = (uint64_t)uv_stride * ((h + 1) / 2); in AllocateBuffer()
101 total_size = size + 2 * uv_size + a_size; in AllocateBuffer()
117 buf->u_size = (size_t)uv_size; in AllocateBuffer()
118 buf->v = output + size + uv_size; in AllocateBuffer()
120 buf->v_size = (size_t)uv_size; in AllocateBuffer()
122 buf->a = output + size + 2 * uv_size; in AllocateBuffer()
/external/webp/src/enc/
Dpicture.c53 uint64_t y_size, uv_size, uv0_size, a_size, total_size; in WebPPictureAlloc() local
79 uv_size = (uint64_t)uv_stride * uv_height; in WebPPictureAlloc()
82 total_size = y_size + a_size + 2 * uv_size + 2 * uv0_size; in WebPPictureAlloc()
105 mem += uv_size; in WebPPictureAlloc()
107 mem += uv_size; in WebPPictureAlloc()
/external/libyuv/files/source/
Dconvert.cc1756 int uv_size = ((dst_width + 1) / 2) * ((abs_dst_height + 1) / 2); in ConvertToI420() local
1757 buf = new uint8[y_size + uv_size * 2]; in ConvertToI420()
1763 v = u + uv_size; in ConvertToI420()