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

Unified Diff: include/core/SkTemplates.h

Issue 1069013002: add realloc method to SkAutoSTMalloc (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: feedback inc Created 5 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkTemplates.h
diff --git a/include/core/SkTemplates.h b/include/core/SkTemplates.h
index b18556b4524b8bb713b25747ff51929a97a8998e..54d4d5dbfbc0314f6c417ebc4615ff43c52e5ade 100644
--- a/include/core/SkTemplates.h
+++ b/include/core/SkTemplates.h
@@ -464,6 +464,17 @@ public:
return fPtr[index];
}
+ // Reallocs the array, can be used to shrink the allocation. By reset above, we know fPtr's
+ // size is > N so the below memcpy is safe
+ void realloc(size_t count) {
mtklein 2015/04/07 19:59:44 Don't we still need a count > N check for safety?
+ if (fPtr == fTStorage) {
+ fPtr = (T*)sk_malloc_throw(count * sizeof(T));
+ memcpy(fPtr, fTStorage, N);
+ } else {
+ fPtr = (T*)sk_realloc_throw(fPtr, count * sizeof(T));
+ }
+ }
+
private:
T* fPtr;
union {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698