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

Side by Side Diff: source/row_any.cc

Issue 2529983002: Add MSA optimized ARGB Multiply/Add/Subtract row functions (Closed)
Patch Set: Corrected patchset files Created 4 years 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 unified diff | Download patch
« no previous file with comments | « source/planar_functions.cc ('k') | source/row_msa.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The LibYuv Project Authors. All rights reserved. 2 * Copyright 2012 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 #endif 227 #endif
228 #ifdef HAS_ARGBMULTIPLYROW_NEON 228 #ifdef HAS_ARGBMULTIPLYROW_NEON
229 ANY21(ARGBMultiplyRow_Any_NEON, ARGBMultiplyRow_NEON, 0, 4, 4, 4, 7) 229 ANY21(ARGBMultiplyRow_Any_NEON, ARGBMultiplyRow_NEON, 0, 4, 4, 4, 7)
230 #endif 230 #endif
231 #ifdef HAS_ARGBADDROW_NEON 231 #ifdef HAS_ARGBADDROW_NEON
232 ANY21(ARGBAddRow_Any_NEON, ARGBAddRow_NEON, 0, 4, 4, 4, 7) 232 ANY21(ARGBAddRow_Any_NEON, ARGBAddRow_NEON, 0, 4, 4, 4, 7)
233 #endif 233 #endif
234 #ifdef HAS_ARGBSUBTRACTROW_NEON 234 #ifdef HAS_ARGBSUBTRACTROW_NEON
235 ANY21(ARGBSubtractRow_Any_NEON, ARGBSubtractRow_NEON, 0, 4, 4, 4, 7) 235 ANY21(ARGBSubtractRow_Any_NEON, ARGBSubtractRow_NEON, 0, 4, 4, 4, 7)
236 #endif 236 #endif
237 #ifdef HAS_ARGBMULTIPLYROW_MSA
238 ANY21(ARGBMultiplyRow_Any_MSA, ARGBMultiplyRow_MSA, 0, 4, 4, 4, 3)
239 #endif
240 #ifdef HAS_ARGBADDROW_MSA
241 ANY21(ARGBAddRow_Any_MSA, ARGBAddRow_MSA, 0, 4, 4, 4, 7)
242 #endif
243 #ifdef HAS_ARGBSUBTRACTROW_MSA
244 ANY21(ARGBSubtractRow_Any_MSA, ARGBSubtractRow_MSA, 0, 4, 4, 4, 7)
245 #endif
237 #ifdef HAS_SOBELROW_SSE2 246 #ifdef HAS_SOBELROW_SSE2
238 ANY21(SobelRow_Any_SSE2, SobelRow_SSE2, 0, 1, 1, 4, 15) 247 ANY21(SobelRow_Any_SSE2, SobelRow_SSE2, 0, 1, 1, 4, 15)
239 #endif 248 #endif
240 #ifdef HAS_SOBELROW_NEON 249 #ifdef HAS_SOBELROW_NEON
241 ANY21(SobelRow_Any_NEON, SobelRow_NEON, 0, 1, 1, 4, 7) 250 ANY21(SobelRow_Any_NEON, SobelRow_NEON, 0, 1, 1, 4, 7)
242 #endif 251 #endif
243 #ifdef HAS_SOBELTOPLANEROW_SSE2 252 #ifdef HAS_SOBELTOPLANEROW_SSE2
244 ANY21(SobelToPlaneRow_Any_SSE2, SobelToPlaneRow_SSE2, 0, 1, 1, 1, 15) 253 ANY21(SobelToPlaneRow_Any_SSE2, SobelToPlaneRow_SSE2, 0, 1, 1, 1, 15)
245 #endif 254 #endif
246 #ifdef HAS_SOBELTOPLANEROW_NEON 255 #ifdef HAS_SOBELTOPLANEROW_NEON
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
886 #endif 895 #endif
887 #ifdef HAS_UYVYTOUVROW_MSA 896 #ifdef HAS_UYVYTOUVROW_MSA
888 ANY12S(UYVYToUVRow_Any_MSA, UYVYToUVRow_MSA, 1, 4, 31) 897 ANY12S(UYVYToUVRow_Any_MSA, UYVYToUVRow_MSA, 1, 4, 31)
889 #endif 898 #endif
890 #undef ANY12S 899 #undef ANY12S
891 900
892 #ifdef __cplusplus 901 #ifdef __cplusplus
893 } // extern "C" 902 } // extern "C"
894 } // namespace libyuv 903 } // namespace libyuv
895 #endif 904 #endif
OLDNEW
« no previous file with comments | « source/planar_functions.cc ('k') | source/row_msa.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698