HomeSort by relevance Sort by last modified time
    Searched defs:aligned_height (Results 1 - 12 of 12) sorted by null

  /external/libvpx/libvpx/vp9/common/
vp9_alloccommon.c 22 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2); local
25 cm->mi_rows = aligned_height >> MI_SIZE_LOG2;
  /external/mesa3d/src/gallium/drivers/freedreno/a5xx/
fd5_resource.c 68 uint32_t aligned_height = height; local
73 aligned_height = align(aligned_height, heightalign);
85 aligned_height = align(aligned_height, 32);
95 blocks = util_format_get_nblocks(format, slice->pitch, aligned_height);
113 debug_printf("%s: %ux%ux%u@%u: %2u: stride=%4u, size=%7u, aligned_height=%3u\n",
118 aligned_height);
  /external/libaom/libaom/aom_scale/generic/
yv12config.c 55 const int aligned_height, const int uv_width, const int uv_height,
120 ybf->y_height = aligned_height;
175 const int aligned_height, const int border,
188 (aligned_height + 2 * border) * (uint64_t)(*y_stride) + byte_alignment;
211 const int aligned_height = (height + 7) & ~7; local
213 const int uv_height = aligned_height >> ss_y;
218 ss_x, ss_y, aligned_width, aligned_height, border, byte_alignment,
224 aligned_width, aligned_height, uv_width, uv_height, uv_stride,
256 const int aligned_height = (height + 7) & ~7; local
259 const int uv_height = aligned_height >> ss_y
    [all...]
  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 54 int aligned_height = (height + 15) & ~15; local
56 int yplane_size = (aligned_height + 2 * border) * y_stride;
58 int uv_height = aligned_height >> 1;
90 ybf->y_height = aligned_height;
170 const int aligned_height = (height + 7) & ~7; local
173 (aligned_height + 2 * border) * (uint64_t)y_stride + byte_alignment;
175 const int uv_height = aligned_height >> ss_y;
246 ybf->y_height = aligned_height;
  /external/libaom/libaom/av1/common/
alloccommon.c 25 const int aligned_height = ALIGN_POWER_OF_TWO(height, 3); local
27 const int mi_rows = aligned_height >> MI_SIZE_LOG2;
73 const int aligned_height = ALIGN_POWER_OF_TWO(height, 3); local
76 cm->mi_rows = aligned_height >> MI_SIZE_LOG2;
  /external/libxcam/modules/ocl/
cl_image_bo_buffer.cpp 174 uint32_t aligned_height = info.aligned_height; local
176 aligned_height = desc.slice_pitch / desc.row_pitch;
177 info.init (info.format, info.width, info.height, aligned_width, aligned_height, desc.size);
  /external/libxcam/xcore/base/
xcam_3a_stats.h 32 uint32_t aligned_height; member in struct:_XCam3AStatsInfo
xcam_buffer.h 84 uint32_t aligned_height; member in struct:_XCamVideoBufferInfo
130 uint32_t aligned_width, uint32_t aligned_height, uint32_t size);
  /external/minigbm/
rockchip.c 177 uint32_t aligned_height = DIV_ROUND_UP(h_mbs * 16 * 3, 2); local
180 bo->total_size = bo->strides[0] * aligned_height + w_mbs * h_mbs * 128;
helpers.c 223 int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t aligned_height, uint32_t format)
239 assert(aligned_height == bo->height);
245 bo->sizes[p] = drv_size_from_format(format, bo->strides[p], aligned_height, p);
259 uint32_t aligned_width, aligned_height; local
263 aligned_height = height;
273 aligned_height = 3 * DIV_ROUND_UP(height, 2);
277 create_dumb.height = aligned_height;
  /external/mesa3d/src/gallium/drivers/vc4/kernel/
vc4_validate.c 154 uint32_t aligned_width, aligned_height, stride, size; local
173 aligned_height = height;
177 aligned_height = round_up(height, utile_h * 8);
181 aligned_height = round_up(height, utile_h);
189 size = stride * aligned_height;
195 aligned_width, aligned_height,
682 uint32_t aligned_width, aligned_height; local
694 aligned_height = round_up(level_height, utile_h * 8);
698 aligned_height = round_up(level_height, utile_h);
702 aligned_height = level_height
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_ratectrl.c 2828 const int aligned_height = ALIGN_POWER_OF_TWO(src_height, MI_SIZE_LOG2); local
    [all...]

Completed in 1757 milliseconds