Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Unified Diff: source/rotate_any.cc

Issue 2617703002: Add MSA optimized rotate functions (used 16x16 transpose) (Closed)
Patch Set: correct file mode Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/rotate.cc ('k') | source/rotate_msa.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/rotate_any.cc
diff --git a/source/rotate_any.cc b/source/rotate_any.cc
index 67e565e4d183c7064d1199083cdaebf882cb685d..562096b926c2b5183725adeb29ea70725a2c06b6 100644
--- a/source/rotate_any.cc
+++ b/source/rotate_any.cc
@@ -41,8 +41,8 @@ TANY(TransposeWx8_Fast_Any_SSSE3, TransposeWx8_Fast_SSSE3, 15)
#ifdef HAS_TRANSPOSEWX8_DSPR2
TANY(TransposeWx8_Any_DSPR2, TransposeWx8_DSPR2, 7)
#endif
-#ifdef HAS_TRANSPOSEWX8_MSA
-TANY(TransposeWx8_Any_MSA, TransposeWx8_MSA, 15)
+#ifdef HAS_TRANSPOSEWX16_MSA
+TANY(TransposeWx16_Any_MSA, TransposeWx16_MSA, 15)
#endif
#undef TANY
@@ -67,8 +67,8 @@ TUVANY(TransposeUVWx8_Any_SSE2, TransposeUVWx8_SSE2, 7)
#ifdef HAS_TRANSPOSEUVWX8_DSPR2
TUVANY(TransposeUVWx8_Any_DSPR2, TransposeUVWx8_DSPR2, 7)
#endif
-#ifdef HAS_TRANSPOSEUVWX8_MSA
-TUVANY(TransposeUVWx8_Any_MSA, TransposeUVWx8_MSA, 7)
+#ifdef HAS_TRANSPOSEUVWX16_MSA
+TUVANY(TransposeUVWx16_Any_MSA, TransposeUVWx16_MSA, 7)
#endif
#undef TUVANY
« no previous file with comments | « source/rotate.cc ('k') | source/rotate_msa.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698