/hardware/qcom/msm8x74/original-kernel-headers/media/ |
msm_media_info.h | 13 #define VENUS_Y_STRIDE(__color_fmt, __width) ({\ 15 if (__width) { \ 19 __stride = MSM_MEDIA_ALIGN(__width, __alignment);\ 28 #define VENUS_UV_STRIDE(__color_fmt, __width) ({\ 30 if (__width) {\ 34 __stride = MSM_MEDIA_ALIGN(__width, __alignment); \ 74 __color_fmt, __width, __height) ({ \ 79 if (__width && __height) {\ 80 __y_stride = VENUS_Y_STRIDE(__color_fmt, __width); \ 81 __uv_stride = VENUS_UV_STRIDE(__color_fmt, __width); \ [all...] |
/hardware/qcom/msm8x74/kernel-headers/media/ |
msm_media_info.h | 30 #define VENUS_Y_STRIDE(__color_fmt, __width) ({ unsigned int __alignment, __stride = 0; if (__width) { switch (__color_fmt) { case COLOR_FMT_NV12: __alignment = 128; __stride = MSM_MEDIA_ALIGN(__width, __alignment); break; default: break; } } __stride; }) 31 #define VENUS_UV_STRIDE(__color_fmt, __width) ({ unsigned int __alignment, __stride = 0; if (__width) { switch (__color_fmt) { case COLOR_FMT_NV12: __alignment = 128; __stride = MSM_MEDIA_ALIGN(__width, __alignment); break; default: break; } } __stride; }) 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(__ (…) [all...] |
/external/stlport/stlport/stl/ |
_string_io.c | 86 streamsize __width = __is.width(0); local 88 if (__width <= 0) 90 /* __width can only overflow size_type if sizeof(streamsize) > sizeof(size_type) 91 * because here we know that __width is positive and the stattic assertion check 95 (__width > __STATIC_CAST(streamsize, __s.max_size()))) 98 __n = __STATIC_CAST(size_type, __width);
|
_monetary.c | 408 streamsize __width = __str.width(); local 442 const bool __need_fill = (((sizeof(streamsize) > sizeof(size_t)) && (__STATIC_CAST(streamsize, __length) < __width)) || 443 ((sizeof(streamsize) <= sizeof(size_t)) && (__length < __STATIC_CAST(size_t, __width)))); 444 streamsize __fill_amt = __need_fill ? __width - __length : 0;
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_string_io.c | 86 streamsize __width = __is.width(0); local 88 if (__width <= 0) 90 /* __width can only overflow size_type if sizeof(streamsize) > sizeof(size_type) 91 * because here we know that __width is positive and the stattic assertion check 95 (__width > __STATIC_CAST(streamsize, __s.max_size()))) 98 __n = __STATIC_CAST(size_type, __width);
|
_monetary.c | 408 streamsize __width = __str.width(); local 442 const bool __need_fill = (((sizeof(streamsize) > sizeof(size_t)) && (__STATIC_CAST(streamsize, __length) < __width)) || 443 ((sizeof(streamsize) <= sizeof(size_t)) && (__length < __STATIC_CAST(size_t, __width)))); 444 streamsize __fill_amt = __need_fill ? __width - __length : 0;
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_string_io.c | 86 streamsize __width = __is.width(0); local 88 if (__width <= 0) 90 /* __width can only overflow size_type if sizeof(streamsize) > sizeof(size_type) 91 * because here we know that __width is positive and the stattic assertion check 95 (__width > __STATIC_CAST(streamsize, __s.max_size()))) 98 __n = __STATIC_CAST(size_type, __width);
|
_monetary.c | 408 streamsize __width = __str.width(); local 442 const bool __need_fill = (((sizeof(streamsize) > sizeof(size_t)) && (__STATIC_CAST(streamsize, __length) < __width)) || 443 ((sizeof(streamsize) <= sizeof(size_t)) && (__length < __STATIC_CAST(size_t, __width)))); 444 streamsize __fill_amt = __need_fill ? __width - __length : 0;
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_string_io.c | 86 streamsize __width = __is.width(0); local 88 if (__width <= 0) 90 /* __width can only overflow size_type if sizeof(streamsize) > sizeof(size_type) 91 * because here we know that __width is positive and the stattic assertion check 95 (__width > __STATIC_CAST(streamsize, __s.max_size()))) 98 __n = __STATIC_CAST(size_type, __width);
|
_monetary.c | 408 streamsize __width = __str.width(); local 442 const bool __need_fill = (((sizeof(streamsize) > sizeof(size_t)) && (__STATIC_CAST(streamsize, __length) < __width)) || 443 ((sizeof(streamsize) <= sizeof(size_t)) && (__length < __STATIC_CAST(size_t, __width)))); 444 streamsize __fill_amt = __need_fill ? __width - __length : 0;
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_string_io.c | 86 streamsize __width = __is.width(0); local 88 if (__width <= 0) 90 /* __width can only overflow size_type if sizeof(streamsize) > sizeof(size_type) 91 * because here we know that __width is positive and the stattic assertion check 95 (__width > __STATIC_CAST(streamsize, __s.max_size()))) 98 __n = __STATIC_CAST(size_type, __width);
|
_monetary.c | 408 streamsize __width = __str.width(); local 442 const bool __need_fill = (((sizeof(streamsize) > sizeof(size_t)) && (__STATIC_CAST(streamsize, __length) < __width)) || 443 ((sizeof(streamsize) <= sizeof(size_t)) && (__length < __STATIC_CAST(size_t, __width)))); 444 streamsize __fill_amt = __need_fill ? __width - __length : 0;
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_string_io.c | 86 streamsize __width = __is.width(0); local 88 if (__width <= 0) 90 /* __width can only overflow size_type if sizeof(streamsize) > sizeof(size_type) 91 * because here we know that __width is positive and the stattic assertion check 95 (__width > __STATIC_CAST(streamsize, __s.max_size()))) 98 __n = __STATIC_CAST(size_type, __width);
|
_monetary.c | 408 streamsize __width = __str.width(); local 442 const bool __need_fill = (((sizeof(streamsize) > sizeof(size_t)) && (__STATIC_CAST(streamsize, __length) < __width)) || 443 ((sizeof(streamsize) <= sizeof(size_t)) && (__length < __STATIC_CAST(size_t, __width)))); 444 streamsize __fill_amt = __need_fill ? __width - __length : 0;
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_string_io.c | 86 streamsize __width = __is.width(0); local 88 if (__width <= 0) 90 /* __width can only overflow size_type if sizeof(streamsize) > sizeof(size_type) 91 * because here we know that __width is positive and the stattic assertion check 95 (__width > __STATIC_CAST(streamsize, __s.max_size()))) 98 __n = __STATIC_CAST(size_type, __width);
|
_monetary.c | 408 streamsize __width = __str.width(); local 442 const bool __need_fill = (((sizeof(streamsize) > sizeof(size_t)) && (__STATIC_CAST(streamsize, __length) < __width)) || 443 ((sizeof(streamsize) <= sizeof(size_t)) && (__length < __STATIC_CAST(size_t, __width)))); 444 streamsize __fill_amt = __need_fill ? __width - __length : 0;
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/ |
memory.cpp | 123 __format(*format), __width(width), __height(height), __depth(depth), 150 return __width;
|
memory.hpp | 126 size_t __width; member in struct:clover::image
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
memory.cpp | 123 __format(*format), __width(width), __height(height), __depth(depth), 150 return __width;
|
memory.hpp | 126 size_t __width; member in struct:clover::image
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
fstream.tcc | 688 int __width = 0; 690 __width = _M_codecvt->encoding(); 691 if (__width < 0) 692 __width = 0; 695 const bool __testfail = __off != 0 && __width <= 0; 707 off_type __computed_off = __off * __width;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/ |
fstream.tcc | 717 int __width = 0; 719 __width = _M_codecvt->encoding(); 720 if (__width < 0) 721 __width = 0; 724 const bool __testfail = __off != 0 && __width <= 0; 744 off_type __computed_off = __off * __width;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/ |
fstream.tcc | 717 int __width = 0; 719 __width = _M_codecvt->encoding(); 720 if (__width < 0) 721 __width = 0; 724 const bool __testfail = __off != 0 && __width <= 0; 744 off_type __computed_off = __off * __width;
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
fstream.tcc | 688 int __width = 0; 690 __width = _M_codecvt->encoding(); 691 if (__width < 0) 692 __width = 0; 695 const bool __testfail = __off != 0 && __width <= 0; 707 off_type __computed_off = __off * __width;
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
fstream.tcc | 688 int __width = 0; 690 __width = _M_codecvt->encoding(); 691 if (__width < 0) 692 __width = 0; 695 const bool __testfail = __off != 0 && __width <= 0; 707 off_type __computed_off = __off * __width;
|