OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ALIGN_POWER_OF_TWO
(Results
1 - 5
of
5
) sorted by null
/external/libvpx/libvpx/vp9/common/
vp9_alloccommon.c
83
const int aligned_width =
ALIGN_POWER_OF_TWO
(width, MI_SIZE_LOG2);
84
const int aligned_height =
ALIGN_POWER_OF_TWO
(height, MI_SIZE_LOG2);
136
const int aligned_width =
ALIGN_POWER_OF_TWO
(width, MI_SIZE_LOG2);
137
const int aligned_height =
ALIGN_POWER_OF_TWO
(height, MI_SIZE_LOG2);
220
const int aligned_width =
ALIGN_POWER_OF_TWO
(cm->width, MI_SIZE_LOG2);
221
const int aligned_height =
ALIGN_POWER_OF_TWO
(cm->height, MI_SIZE_LOG2);
vp9_common.h
28
#define
ALIGN_POWER_OF_TWO
(value, n) \
vp9_extend.c
67
const int eb_y = MAX(
ALIGN_POWER_OF_TWO
(src->y_width, 6) - src->y_width,
69
const int er_y = MAX(
ALIGN_POWER_OF_TWO
(src->y_height, 6) - src->y_height,
vp9_onyxc_int.h
245
return
ALIGN_POWER_OF_TWO
(n_mis, MI_BLOCK_SIZE_LOG2);
/external/libvpx/libvpx/vp9/
vp9_iface_common.h
32
img->h =
ALIGN_POWER_OF_TWO
(yv12->y_height + 2 * VP9BORDERINPIXELS, 3);
Completed in 73 milliseconds