Home | History | Annotate | Download | only in source

Lines Matching refs:IS_ALIGNED

39     if (IS_ALIGNED(width, 8)) {
47 if (IS_ALIGNED(width, 16)) {
54 if (IS_ALIGNED(width, 4) &&
55 IS_ALIGNED(src, 4) && IS_ALIGNED(src_stride, 4)) {
115 if (IS_ALIGNED(width, 16)) {
123 if (IS_ALIGNED(width, 16)) {
131 if (IS_ALIGNED(width, 32)) {
139 IS_ALIGNED(src, 4) && IS_ALIGNED(src_stride, 4) &&
140 IS_ALIGNED(dst, 4) && IS_ALIGNED(dst_stride, 4)) {
146 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2;
151 CopyRow = IS_ALIGNED(width, 64) ? CopyRow_AVX : CopyRow_Any_AVX;
161 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_NEON : CopyRow_Any_NEON;
201 if (IS_ALIGNED(width, 8)) {
207 if (TestCpuFlag(kCpuHasDSPR2) && IS_ALIGNED(width, 2) &&
208 IS_ALIGNED(src, 4) && IS_ALIGNED(src_stride, 4)) {
273 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 8)) {
278 if (TestCpuFlag(kCpuHasSSSE3) && IS_ALIGNED(width, 16)) {
284 IS_ALIGNED(src, 4) && IS_ALIGNED(src_stride, 4)) {