Rename row functions so they are all SomethingRow_CPU
BUG=133
TEST=still builds
Review URL: https://webrtc-codereview.appspot.com/939020

git-svn-id: http://libyuv.googlecode.com/svn/trunk@491 16f28f9a-4ce2-e073-06de-1de4eb20be90
diff --git a/source/row_mips.cc b/source/row_mips.cc
index 48759e0..6029f55 100644
--- a/source/row_mips.cc
+++ b/source/row_mips.cc
@@ -23,9 +23,9 @@
 }
 #endif
 
-#ifdef HAS_SPLITUV_MIPS_DSPR2
-void SplitUV_MIPS_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v,
-                        int width) {
+#ifdef HAS_SPLITUVROW_MIPS_DSPR2
+void SplitUVRow_MIPS_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v,
+                           int width) {
   __asm__ __volatile__ (
     ".set push                                     \n"
     ".set noreorder                                \n"
@@ -90,8 +90,8 @@
   );
 }
 
-void SplitUV_Unaligned_MIPS_DSPR2(const uint8* src_uv, uint8* dst_u,
-                                  uint8* dst_v, int width) {
+void SplitUVRow_Unaligned_MIPS_DSPR2(const uint8* src_uv, uint8* dst_u,
+                                     uint8* dst_v, int width) {
   __asm__ __volatile__ (
     ".set push                                     \n"
     ".set noreorder                                \n"
@@ -171,7 +171,7 @@
        "t4", "t5", "t6", "t7", "t8", "t9"
   );
 }
-#endif  // HAS_SPLITUV_MIPS_DSPR2
+#endif  // HAS_SPLITUVROW_MIPS_DSPR2
 
 #ifdef HAS_MIRRORROW_MIPS_DSPR2
 void MirrorRow_MIPS_DSPR2(const uint8* src, uint8* dst, int width) {
@@ -225,7 +225,7 @@
 }
 #endif  // HAS_MIRRORROW_MIPS_DSPR2
 
-#ifdef HAS_MirrorUVRow_MIPS_DSPR2
+#ifdef HAS_MIRRORUVROW_MIPS_DSPR2
 void MirrorUVRow_MIPS_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v,
                             int width) {
   int x = 0;
@@ -315,9 +315,7 @@
         "t5", "t7", "t8", "t9"
   );
 }
-#endif  // HAS_MirrorUVRow_MIPS_DSPR2
-
-
+#endif  // HAS_MIRRORUVROW_MIPS_DSPR2
 
 // Convert (4 Y and 2 VU) I422 and arrange RGB values into
 // t5 = | 0 | B0 | 0 | b0 |