/external/libyuv/files/source/ |
format_conversion.cc | 151 IS_ALIGNED(width, 4) && 152 IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16)) { 382 IS_ALIGNED(width, 16) && 383 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { 388 if (TestCpuFlag(kCpuHasSSSE3) && IS_ALIGNED(width, 16)) { 471 if (TestCpuFlag(kCpuHasSSSE3) && IS_ALIGNED(width, 4)) {
|
compare.cc | 362 IS_ALIGNED(src_a, 16) && IS_ALIGNED(src_b, 16)) { 403 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 16) && 404 IS_ALIGNED(src_a, 16) && IS_ALIGNED(stride_a, 16) && 405 IS_ALIGNED(src_b, 16) && IS_ALIGNED(stride_b, 16)) {
|
scale_argb.cc | 804 IS_ALIGNED(dst_width, 4) && 805 IS_ALIGNED(src_ptr, 16) && IS_ALIGNED(src_stride, 16) && 806 IS_ALIGNED(dst_ptr, 16) && IS_ALIGNED(dst_stride, 16)) { 832 assert(IS_ALIGNED(src_width, 2)); 833 assert(IS_ALIGNED(src_height, 2)); 839 IS_ALIGNED(dst_width, 4) && 840 IS_ALIGNED(dst_ptr, 16) && IS_ALIGNED(dst_stride, 16)) [all...] |
scale.cc | [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
api_params.c | 268 if ((count && !values) || !count_in_bounds(type, count) || !is_aligned(values)) { 395 if ((count && !values) || !count_in_bounds(type, count) || !is_aligned(values)) { 771 if (!values || count <= 0 || count > real_count || !is_aligned(values)) { 872 if (!values || count <= 0 || count > real_count || !is_aligned(values)) { 978 if (object == VG_INVALID_HANDLE || !is_aligned(ptr)) { 1032 if (object == VG_INVALID_HANDLE || !is_aligned(ptr)) { 1109 if (object == VG_INVALID_HANDLE || !is_aligned(ptr)) { 1116 !is_aligned(values)) { [all...] |
api_images.c | 188 if (width <= 0 || height <= 0 || !data || !is_aligned(data)) { 216 if (width <= 0 || height <= 0 || !data || !is_aligned(data)) { 364 if (!data || !is_aligned(data)) { 412 if (!data || !is_aligned(data)) {
|
vgu.c | 94 if (!points || count <= 0 || !is_aligned(points)) { 368 if (!matrix || !is_aligned(matrix)) 394 if (!matrix || !is_aligned(matrix)) 424 if (!matrix || !is_aligned(matrix))
|
vg_context.h | 189 static INLINE VGboolean is_aligned(const void *ptr) function
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
api_params.c | 268 if ((count && !values) || !count_in_bounds(type, count) || !is_aligned(values)) { 395 if ((count && !values) || !count_in_bounds(type, count) || !is_aligned(values)) { 771 if (!values || count <= 0 || count > real_count || !is_aligned(values)) { 872 if (!values || count <= 0 || count > real_count || !is_aligned(values)) { 978 if (object == VG_INVALID_HANDLE || !is_aligned(ptr)) { 1032 if (object == VG_INVALID_HANDLE || !is_aligned(ptr)) { 1109 if (object == VG_INVALID_HANDLE || !is_aligned(ptr)) { 1116 !is_aligned(values)) { [all...] |
api_images.c | 188 if (width <= 0 || height <= 0 || !data || !is_aligned(data)) { 216 if (width <= 0 || height <= 0 || !data || !is_aligned(data)) { 364 if (!data || !is_aligned(data)) { 412 if (!data || !is_aligned(data)) {
|
vgu.c | 94 if (!points || count <= 0 || !is_aligned(points)) { 368 if (!matrix || !is_aligned(matrix)) 394 if (!matrix || !is_aligned(matrix)) 424 if (!matrix || !is_aligned(matrix))
|
vg_context.h | 189 static INLINE VGboolean is_aligned(const void *ptr) function
|
/external/chromium_org/third_party/libjingle/overrides/talk/base/ |
basictypes.h | 92 #define IS_ALIGNED(p, a) (0==(reinterpret_cast<uintptr_t>(p) & ((a)-1)))
|
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/ |
scale.c | [all...] |
row.h | 17 #define IS_ALIGNED(p, a) (!((uintptr_t)(p) & ((a) - 1)))
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
scale.c | [all...] |
row.h | 17 #define IS_ALIGNED(p, a) (!((uintptr_t)(p) & ((a) - 1)))
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/source/ |
scale.c | [all...] |
row.h | 17 #define IS_ALIGNED(p, a) (!((uintptr_t)(p) & ((a) - 1)))
|
/external/e2fsprogs/lib/ext2fs/ |
unix_io.c | 96 #define IS_ALIGNED(n, align) ((((unsigned long) n) & \ 179 (IS_ALIGNED(buf, channel->align) && 180 IS_ALIGNED(size, channel->align))) { 250 (IS_ALIGNED(buf, channel->align) && 251 IS_ALIGNED(size, channel->align))) {
|
/external/chromium_org/third_party/libyuv/source/ |
compare.cc | 118 IS_ALIGNED(src_a, 16) && IS_ALIGNED(src_b, 16)) {
|
/external/chromium_org/third_party/skia/src/utils/ |
SkMD5.cpp | 231 static inline bool is_aligned(const void *pointer, size_t byte_count) { function 240 if (is_aligned(input, 4)) {
|
/external/skia/src/utils/ |
SkMD5.cpp | 231 static inline bool is_aligned(const void *pointer, size_t byte_count) { function 240 if (is_aligned(input, 4)) {
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
type_with_alignment.hpp | 162 struct is_aligned struct in namespace:boost::detail 199 ::boost::detail::is_aligned< ::boost::alignment_of<t1>::value,Align >::value
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
basictypes.h | 143 #define IS_ALIGNED(p, a) (!((uintptr_t)(p) & ((a) - 1)))
|