move GrMalloc, GrFree, Gr_bzero to their sk equivalents

BUG=
R=bsalomon@google.com

Review URL: https://codereview.chromium.org/23566022

git-svn-id: http://skia.googlecode.com/svn/trunk@11486 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrTHashCache.h b/src/gpu/GrTHashCache.h
index c614b1d..a9b4918 100644
--- a/src/gpu/GrTHashCache.h
+++ b/src/gpu/GrTHashCache.h
@@ -34,7 +34,7 @@
  */
 template <typename T, typename Key, size_t kHashBits> class GrTHashTable {
 public:
-    GrTHashTable() { Gr_bzero(fHash, sizeof(fHash)); }
+    GrTHashTable() { sk_bzero(fHash, sizeof(fHash)); }
     ~GrTHashTable() {}
 
     int count() const { return fSorted.count(); }
@@ -210,19 +210,19 @@
 template <typename T, typename Key, size_t kHashBits>
 void GrTHashTable<T, Key, kHashBits>::removeAll() {
     fSorted.reset();
-    Gr_bzero(fHash, sizeof(fHash));
+    sk_bzero(fHash, sizeof(fHash));
 }
 
 template <typename T, typename Key, size_t kHashBits>
 void GrTHashTable<T, Key, kHashBits>::deleteAll() {
     fSorted.deleteAll();
-    Gr_bzero(fHash, sizeof(fHash));
+    sk_bzero(fHash, sizeof(fHash));
 }
 
 template <typename T, typename Key, size_t kHashBits>
 void GrTHashTable<T, Key, kHashBits>::unrefAll() {
     fSorted.unrefAll();
-    Gr_bzero(fHash, sizeof(fHash));
+    sk_bzero(fHash, sizeof(fHash));
 }
 
 #ifdef SK_DEBUG