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

1 2

  /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...]
  /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...]
  /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;
_num_put.c 45 streamsize __width, _CharT __fill,
47 if (__width <= __last - __first)
50 streamsize __pad = __width - (__last - __first);
  /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;
_num_put.c 45 streamsize __width, _CharT __fill,
47 if (__width <= __last - __first)
50 streamsize __pad = __width - (__last - __first);
  /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;
_num_put.c 45 streamsize __width, _CharT __fill,
47 if (__width <= __last - __first)
50 streamsize __pad = __width - (__last - __first);
  /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;
_num_put.c 45 streamsize __width, _CharT __fill,
47 if (__width <= __last - __first)
50 streamsize __pad = __width - (__last - __first);
  /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;
_num_put.c 45 streamsize __width, _CharT __fill,
47 if (__width <= __last - __first)
50 streamsize __pad = __width - (__last - __first);
  /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

Completed in 8611 milliseconds

1 2