Lines Matching full:is_aligned
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) &&
104 IS_ALIGNED(src, 16) && IS_ALIGNED(src_stride, 16) &&
105 IS_ALIGNED(dst, 16) && IS_ALIGNED(dst_stride, 16)) {