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

Unified Diff: third_party/zlib/deflate.h

Issue 552123005: Integrate SIMD optimisations for zlib (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gn build (uses different cflags -Wunused-variable) Created 6 years, 3 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
Index: third_party/zlib/deflate.h
diff --git a/third_party/zlib/deflate.h b/third_party/zlib/deflate.h
index 2fe6fd6670f5f6742655c736d08fd2c89b58dc6c..fff672ed82a9ffdbbeaf6530875b8ae1bc1758ce 100644
--- a/third_party/zlib/deflate.h
+++ b/third_party/zlib/deflate.h
@@ -107,6 +107,8 @@ typedef struct internal_state {
Byte method; /* STORED (for zip only) or DEFLATED */
int last_flush; /* value of flush param for previous deflate call */
+ unsigned __attribute__((aligned(16))) crc0[4 * 5];
agl 2014/09/26 18:32:27 I think that this is a place where an #ifdef reall
robert.bradford 2014/10/15 16:14:40 This was resolved with a zalign macro when full wi
+
/* used by deflate.c: */
uInt w_size; /* LZ77 window size (32K by default) */

Powered by Google App Engine
This is Rietveld 408576698