| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The LibYuv Project Authors. All rights reserved. | 2 * Copyright 2015 The LibYuv Project Authors. All rights reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 #endif | 414 #endif |
| 415 #ifdef HAS_SCALEADDROW_AVX2 | 415 #ifdef HAS_SCALEADDROW_AVX2 |
| 416 SAANY(ScaleAddRow_Any_AVX2, ScaleAddRow_AVX2, ScaleAddRow_C, 31) | 416 SAANY(ScaleAddRow_Any_AVX2, ScaleAddRow_AVX2, ScaleAddRow_C, 31) |
| 417 #endif | 417 #endif |
| 418 #ifdef HAS_SCALEADDROW_NEON | 418 #ifdef HAS_SCALEADDROW_NEON |
| 419 SAANY(ScaleAddRow_Any_NEON, ScaleAddRow_NEON, ScaleAddRow_C, 15) | 419 SAANY(ScaleAddRow_Any_NEON, ScaleAddRow_NEON, ScaleAddRow_C, 15) |
| 420 #endif | 420 #endif |
| 421 #ifdef HAS_SCALEADDROW_MSA | 421 #ifdef HAS_SCALEADDROW_MSA |
| 422 SAANY(ScaleAddRow_Any_MSA, ScaleAddRow_MSA, ScaleAddRow_C, 15) | 422 SAANY(ScaleAddRow_Any_MSA, ScaleAddRow_MSA, ScaleAddRow_C, 15) |
| 423 #endif | 423 #endif |
| 424 #ifdef HAS_SCALEADDROW_DSPR2 |
| 425 SAANY(ScaleAddRow_Any_DSPR2, ScaleAddRow_DSPR2, ScaleAddRow_C, 15) |
| 426 #endif |
| 424 #undef SAANY | 427 #undef SAANY |
| 425 | 428 |
| 426 #ifdef __cplusplus | 429 #ifdef __cplusplus |
| 427 } // extern "C" | 430 } // extern "C" |
| 428 } // namespace libyuv | 431 } // namespace libyuv |
| 429 #endif | 432 #endif |
| OLD | NEW |