ARM Skia NEON patches - 01 - Simple fixes

This series contains a few fairly non-controversial fixes.





Misc: remove dead references to neon 4444 functions

Misc: avoid the double _neon_neon suffix in the clamp matrix functions.
MAKENAME already adds the _neon suffix

Misc: a few stupid / obvious fixes

BUG=
R=djsollen@google.com

Author: kevin.petit.arm@gmail.com

Review URL: https://chromiumcodereview.appspot.com/18666004

git-svn-id: http://skia.googlecode.com/svn/trunk@10072 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/DrawBitmapRectTest.cpp b/tests/DrawBitmapRectTest.cpp
index 1917004..0538a12 100644
--- a/tests/DrawBitmapRectTest.cpp
+++ b/tests/DrawBitmapRectTest.cpp
@@ -102,13 +102,13 @@
     for (int y = 0; y < bm.height(); ++y) {
         for (int x = 0; x < bm.width(); ++x) {
             if (shouldBeDrawn) {
-                if (0 == *bm.getAddr32(x, y)) {
+                if (SK_ColorTRANSPARENT == *bm.getAddr32(x, y)) {
                     REPORTER_ASSERT(reporter, false);
                     return;
                 }
             } else {
                 // should not be drawn
-                if (*bm.getAddr32(x, y)) {
+                if (SK_ColorTRANSPARENT != *bm.getAddr32(x, y)) {
                     REPORTER_ASSERT(reporter, false);
                     return;
                 }