HomeSort by relevance Sort by last modified time
    Searched refs:ALIGN_POWER_OF_TWO (Results 1 - 25 of 29) sorted by null

1 2

  /external/libaom/libaom/av1/common/
tile_common.c 31 int mi_cols = ALIGN_POWER_OF_TWO(cm->mi_cols, cm->seq_params.mib_size_log2);
32 int mi_rows = ALIGN_POWER_OF_TWO(cm->mi_rows, cm->seq_params.mib_size_log2);
48 int mi_cols = ALIGN_POWER_OF_TWO(cm->mi_cols, cm->seq_params.mib_size_log2);
49 int mi_rows = ALIGN_POWER_OF_TWO(cm->mi_rows, cm->seq_params.mib_size_log2);
60 int size_sb = ALIGN_POWER_OF_TWO(sb_cols, cm->log2_tile_cols);
101 int mi_rows = ALIGN_POWER_OF_TWO(cm->mi_rows, cm->seq_params.mib_size_log2);
106 size_sb = ALIGN_POWER_OF_TWO(sb_rows, cm->log2_tile_rows);
146 int mi_rows_aligned_to_sb = ALIGN_POWER_OF_TWO(
154 int mi_cols_aligned_to_sb = ALIGN_POWER_OF_TWO(
cdef_block.h 28 ALIGN_POWER_OF_TWO((1 << MAX_SB_SIZE_LOG2) + 2 * CDEF_HBORDER, 3)
alloccommon.c 24 const int aligned_width = ALIGN_POWER_OF_TWO(width, 3);
25 const int aligned_height = ALIGN_POWER_OF_TWO(height, 3);
72 const int aligned_width = ALIGN_POWER_OF_TWO(width, 3);
73 const int aligned_height = ALIGN_POWER_OF_TWO(height, 3);
148 const int stride = ALIGN_POWER_OF_TWO(plane_w, 5);
235 ALIGN_POWER_OF_TWO(cm->mi_cols, MAX_MIB_SIZE_LOG2);
thread_common.c 271 ALIGN_POWER_OF_TWO(cm->mi_cols, MAX_MIB_SIZE_LOG2) >> MAX_MIB_SIZE_LOG2;
334 ALIGN_POWER_OF_TWO(cm->mi_cols, MIN_MIB_SIZE_LOG2) >> MIN_MIB_SIZE_LOG2;
406 ALIGN_POWER_OF_TWO(cm->mi_rows, MIN_MIB_SIZE_LOG2) >> MIN_MIB_SIZE_LOG2;
409 ALIGN_POWER_OF_TWO(cm->mi_rows, MAX_MIB_SIZE_LOG2) >> MAX_MIB_SIZE_LOG2;
414 ALIGN_POWER_OF_TWO(cm->mi_rows, MAX_MIB_SIZE_LOG2) >> MAX_MIB_SIZE_LOG2;
onyxc_int.h 810 return ALIGN_POWER_OF_TWO(len, MAX_MIB_SIZE_LOG2);
    [all...]
  /external/libvpx/libvpx/vpx_ports/
mem.h 34 #define ALIGN_POWER_OF_TWO(value, n) \
  /external/libaom/libaom/aom_ports/
mem.h 61 #define ALIGN_POWER_OF_TWO(value, n) \
  /external/libaom/libaom/examples/
lightfield_bitstream_parsing.c 62 #define ALIGN_POWER_OF_TWO(value, n) \
344 const size_t data_sz = MAX_TILES * ALIGN_POWER_OF_TWO(tile_width, 5) *
345 ALIGN_POWER_OF_TWO(tile_height, 5) * bps / 8;
analyzer.cc 134 ALIGN_POWER_OF_TWO(info->frame_width, 6)) -
145 ALIGN_POWER_OF_TWO(info->frame_height, 6)) -
  /external/libaom/libaom/test/
hiprec_convolve_test_util.cc 86 int output_n = ALIGN_POWER_OF_TWO(out_w, 4) * out_h;
132 int output_n = ALIGN_POWER_OF_TWO(out_w, 4) * out_h;
223 int output_n = ALIGN_POWER_OF_TWO(out_w, 4) * out_h;
274 int output_n = ALIGN_POWER_OF_TWO(out_w, 4) * out_h;
av1_horz_only_frame_superres_test.cc 52 src_stride_ = ALIGN_POWER_OF_TWO(w_src_ + 2 * kHPad, 4);
53 dst_stride_ = ALIGN_POWER_OF_TWO(w_dst_ + 2 * kHPad, 4);
  /external/libaom/libaom/av1/decoder/
inspection.c 24 int mi_cols = ALIGN_POWER_OF_TWO(frame_width, 3) >> MI_SIZE_LOG2;
25 int mi_rows = ALIGN_POWER_OF_TWO(frame_height, 3) >> MI_SIZE_LOG2;
decodeframe.c     [all...]
  /external/libaom/libaom/av1/encoder/
extend.c 113 AOMMAX(src->y_width + 16, ALIGN_POWER_OF_TWO(src->y_width, 6)) -
116 AOMMAX(src->y_height + 16, ALIGN_POWER_OF_TWO(src->y_height, 6)) -
encoder.h     [all...]
encoder.c 852 ALIGN_POWER_OF_TWO(cm->mi_rows, cm->seq_params.mib_size_log2);
893 int mi_cols = ALIGN_POWER_OF_TWO(cm->mi_cols, cm->seq_params.mib_size_log2);
913 int mi_rows = ALIGN_POWER_OF_TWO(cm->mi_rows, cm->seq_params.mib_size_log2);
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_alloccommon.c 21 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2);
22 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2);
vp9_postproc.c 328 const int width = ALIGN_POWER_OF_TWO(cm->width, 4);
329 const int height = ALIGN_POWER_OF_TWO(cm->height, 4);
vp9_onyxc_int.h 311 return ALIGN_POWER_OF_TWO(n_mis, MI_BLOCK_SIZE_LOG2);
  /external/libvpx/libvpx/vp9/encoder/
vp9_extend.c 114 VPXMAX(src->y_width + 16, ALIGN_POWER_OF_TWO(src->y_width, 6)) -
117 VPXMAX(src->y_height + 16, ALIGN_POWER_OF_TWO(src->y_height, 6)) -
vp9_ethread.c 60 const int aligned_width = ALIGN_POWER_OF_TWO(cpi->oxcf.width, MI_SIZE_LOG2);
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 43 img->h = ALIGN_POWER_OF_TWO(yv12->y_height + 2 * VP9_ENC_BORDER_IN_PIXELS, 3);
  /external/libaom/libaom/av1/common/x86/
selfguided_avx2.c 554 // The ALIGN_POWER_OF_TWO macro here ensures that column 1 of Atl, Btl,
556 const int buf_elts = ALIGN_POWER_OF_TWO(RESTORATION_PROC_UNIT_PELS, 3);
559 32, 4 * sizeof(*buf) * ALIGN_POWER_OF_TWO(RESTORATION_PROC_UNIT_PELS, 3));
568 int buf_stride = ALIGN_POWER_OF_TWO(width_ext + 16, 3);
  /external/libaom/libaom/av1/
av1_dx_iface.c 710 const int w_even = ALIGN_POWER_OF_TWO(img->d_w, 1);
711 const int h_even = ALIGN_POWER_OF_TWO(img->d_h, 1);
714 const int alloc_w = ALIGN_POWER_OF_TWO(grain_img_buf->d_w, 1);
715 const int alloc_h = ALIGN_POWER_OF_TWO(grain_img_buf->d_h, 1);
    [all...]
av1_cx_iface.c     [all...]

Completed in 426 milliseconds

1 2