/hardware/qcom/msm8x74/kernel-headers/media/ |
msm_media_info.h | 32 #define VENUS_Y_SCANLINES(__color_fmt, __height) ({ unsigned int __alignment, __sclines = 0; if (__height) { switch (__color_fmt) { case COLOR_FMT_NV12: __alignment = 32; __sclines = MSM_MEDIA_ALIGN(__height, __alignment); break; default: break; } } __sclines; }) 34 #define VENUS_UV_SCANLINES(__color_fmt, __height) ({ unsigned int __alignment, __sclines = 0; if (__height) { switch (__color_fmt) { case COLOR_FMT_NV12: __alignment = 16; __sclines = MSM_MEDIA_ALIGN(((__height + 1) >> 1), __alignment); break; default: break; } } __sclines; }) 35 #define VENUS_BUFFER_SIZE( __color_fmt, __width, __height) ({ unsigned int __uv_alignment; unsigned int __size = 0; unsigned int __y_plane, __uv_plane, __y_stride, __uv_stride, __y_sclines, __uv_sclines; if (__width && __height) { __y_stride = VENUS_Y_STRIDE(__color_fmt, __width); __uv_stride = VENUS_UV_STRIDE(__color_fmt, __width); __y_sclines = VENUS_Y_SCANLINES(__color_fmt, __height); __uv_sclines = VENUS_UV_SCANLINES(__color_fmt, __height); switch (__color_fmt) { case COLOR_FMT_NV12: __uv_alignment = 4096; __y_plane = __y_strid (…) [all...] |
/hardware/qcom/msm8x74/original-kernel-headers/media/ |
msm_media_info.h | 43 #define VENUS_Y_SCANLINES(__color_fmt, __height) ({ \ 45 if (__height) {\ 49 __sclines = MSM_MEDIA_ALIGN(__height, __alignment); \ 58 #define VENUS_UV_SCANLINES(__color_fmt, __height) ({\ 60 if (__height) {\ 64 __sclines = MSM_MEDIA_ALIGN(((__height + 1) >> 1), __alignment); \ 74 __color_fmt, __width, __height) ({ \ 79 if (__width && __height) {\ 82 __y_sclines = VENUS_Y_SCANLINES(__color_fmt, __height); \ 83 __uv_sclines = VENUS_UV_SCANLINES(__color_fmt, __height); \ [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/ |
memory.cpp | 123 __format(*format), __width(width), __height(height), __depth(depth), 155 return __height;
|
memory.hpp | 127 size_t __height; member in struct:clover::image
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
memory.cpp | 123 __format(*format), __width(width), __height(height), __depth(depth), 155 return __height;
|
memory.hpp | 127 size_t __height; member in struct:clover::image
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
videoreader.py | 40 self.__height = height 50 return self.__width, self.__height
|