HomeSort by relevance Sort by last modified time
    Searched refs:IS_ALIGNED (Results 1 - 20 of 20) sorted by null

  /external/libyuv/files/source/
planar_functions.cc 33 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 64)) {
38 if (TestCpuFlag(kCpuHasX86) && IS_ALIGNED(width, 4)) {
43 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 32) &&
44 IS_ALIGNED(src_y, 16) && IS_ALIGNED(src_stride_y, 16) &&
45 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) {
84 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 16)) {
89 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 16)) {
93 IS_ALIGNED(src_y, 16) && IS_ALIGNED(src_stride_y, 16))
    [all...]
rotate_argb.cc 43 IS_ALIGNED(height, 4) && // width of dest.
44 IS_ALIGNED(dst, 16) && IS_ALIGNED(dst_stride, 16)) {
85 if (TestCpuFlag(kCpuHasSSSE3) && IS_ALIGNED(width, 4) &&
86 IS_ALIGNED(src, 16) && IS_ALIGNED(src_stride, 16) &&
87 IS_ALIGNED(dst, 16) && IS_ALIGNED(dst_stride, 16)) {
93 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width * 4, 64)) {
103 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width * 4, 32) &
    [all...]
convert_argb.cc 76 if (IS_ALIGNED(width, 8)) {
78 if (IS_ALIGNED(dst_argb, 16) && IS_ALIGNED(dst_stride_argb, 16)) {
121 if (IS_ALIGNED(width, 16)) {
128 if (IS_ALIGNED(width, 8)) {
130 if (IS_ALIGNED(dst_argb, 16) && IS_ALIGNED(dst_stride_argb, 16)) {
173 if (IS_ALIGNED(width, 8)) {
175 if (IS_ALIGNED(dst_argb, 16) && IS_ALIGNED(dst_stride_argb, 16))
    [all...]
convert_from.cc 53 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(halfwidth, 64)) {
57 if (IS_ALIGNED(halfwidth, 4)) {
60 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(halfwidth, 32) &&
61 IS_ALIGNED(src_u, 16) && IS_ALIGNED(src_stride_u, 16) &&
62 IS_ALIGNED(src_v, 16) && IS_ALIGNED(src_stride_v, 16) &&
63 IS_ALIGNED(dst_u, 16) && IS_ALIGNED(dst_stride_u, 16) &&
64 IS_ALIGNED(dst_v, 16) && IS_ALIGNED(dst_stride_v, 16))
    [all...]
convert.cc 153 IS_ALIGNED(halfwidth, 16) &&
154 IS_ALIGNED(src_u, 16) && IS_ALIGNED(src_stride_u, 16) &&
155 IS_ALIGNED(src_v, 16) && IS_ALIGNED(src_stride_v, 16) &&
156 IS_ALIGNED(dst_u, 16) && IS_ALIGNED(dst_stride_u, 16) &&
157 IS_ALIGNED(dst_v, 16) && IS_ALIGNED(dst_stride_v, 16)) {
233 IS_ALIGNED(halfwidth, 16))
    [all...]
rotate.cc     [all...]
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...]
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.cc     [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
scale.c     [all...]
row.h 17 #define IS_ALIGNED(p, a) (!((uintptr_t)(p) & ((a) - 1)))
  /external/chromium/third_party/libjingle/overrides/talk/base/
basictypes.h 58 #define IS_ALIGNED(p, a) (0==(reinterpret_cast<uintptr_t>(p) & ((a)-1)))
  /external/chromium/third_party/libjingle/source/talk/base/
basictypes.h 102 #define IS_ALIGNED(p, a) (0==(reinterpret_cast<uintptr_t>(p) & ((a)-1)))
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 95 #define IS_ALIGNED(n, align) ((((unsigned long) n) & \
174 ((IS_ALIGNED(buf, data->align)) && IS_ALIGNED(size, data->align))) {
243 ((IS_ALIGNED(buf, data->align)) && IS_ALIGNED(size, data->align))) {
  /external/openfst/src/include/fst/
const-fst.h 218 hdr.SetFlags(hdr.GetFlags() | FstHeader::IS_ALIGNED);
220 if ((hdr.GetFlags() & FstHeader::IS_ALIGNED) && !AlignInput(strm)) {
235 if ((hdr.GetFlags() & FstHeader::IS_ALIGNED) && !AlignInput(strm)) {
fst.h 108 IS_ALIGNED = 0x4, // Memory-aligned (where appropriate)
700 file_flags |= FstHeader::IS_ALIGNED;
728 file_flags |= FstHeader::IS_ALIGNED;
compact-fst.h 372 if ((hdr.GetFlags() & FstHeader::IS_ALIGNED) && !AlignInput(strm)) {
392 if ((hdr.GetFlags() & FstHeader::IS_ALIGNED) && !AlignInput(strm)) {
632 hdr.SetFlags(hdr.GetFlags() | FstHeader::IS_ALIGNED);
    [all...]
  /external/valgrind/main/drd/
drd_pthread_intercepts.c 266 #define IS_ALIGNED(p) (((uintptr_t)(p) & (sizeof(*(p)) - 1)) == 0)
285 if (IS_ALIGNED(&mutex->__m_kind))
292 if (IS_ALIGNED(&mutex->__data.__kind))
    [all...]
  /external/libyuv/files/include/libyuv/
row.h 23 #define IS_ALIGNED(p, a) (!((uintptr_t)(p) & ((a) - 1)))

Completed in 1463 milliseconds