Age | Commit message (Expand) | Author | Files | Lines |
2018-02-17 | Ensure DecompressAllTags starts on a 32-byte boundary + 16 bytes. | jgorbe | 1 | -0/+19 |
2018-02-17 | Fix an incorrect analysis / comment in the "pattern doubling" code. | scrubbed | 1 | -11/+8 |
2018-01-04 | Rework a very hot, very sensitive part of snappy to reduce the number of | chandlerc | 1 | -11/+49 |
2017-08-24 | Add a loop alignment directive to work around a performance regression. | wmi | 1 | -0/+7 |
2017-08-01 | Add SNAPPY_ prefix to PREDICT_{TRUE,FALSE} macros. | jueminyang | 1 | -15/+16 |
2017-06-28 | Explicitly copy internal::wordmask to the stack array to work around a compiler | tmsriram | 1 | -1/+10 |
2017-06-05 | Improve the SSE2 macro check on Windows. | alkis | 1 | -2/+11 |
2017-03-17 | Clean up unused function warnings in snappy. | costan | 1 | -1/+8 |
2017-03-13 | Remove "using namespace std;" from zippy-stubs-internal.h. | costan | 1 | -5/+5 |
2017-03-08 | Make UnalignedCopy64 not exhibit undefined behavior when src and dst overlap. | alkis | 1 | -2/+6 |
2017-03-08 | Add compression size reporting hooks. | skanev | 1 | -4/+18 |
2017-03-07 | Use #ifdef __SSE2__ for the emmintrin.h include, otherwise snappy.cc does not... | alkis | 1 | -1/+1 |
2017-01-27 | Improve zippy decompression speed. | Alkis Evlogimenos | 1 | -122/+143 |
2017-01-26 | adds std:: to stl types (#061) | Behzad Nouri | 1 | -3/+4 |
2017-01-26 | Re-work fast path for handling copies in zippy decompression. | Geoff Pike | 1 | -8/+30 |
2017-01-26 | Speed up Zippy decompression in PIE mode by removing the penalty for | Sriraman Tallam | 1 | -0/+4 |
2017-01-26 | Re-work fast path that emits copies in zippy compression. | Geoff Pike | 1 | -30/+42 |
2017-01-26 | Speed up the EmitLiteral fast path, +1.62% for ZFlat benchmarks. | ckennelly | 1 | -17/+21 |
2017-01-26 | Speed up zippy decompression by removing some zero-extensions. | Geoff Pike | 1 | -4/+4 |
2017-01-26 | Avoid calling memset when resizing the buffer. | ckennelly | 1 | -1/+1 |
2016-04-05 | Make heuristic match skipping more aggressive. | Steinar H. Gunderson | 1 | -4/+5 |
2016-01-04 | Fix an issue where the ByteSource path (used for parsing std::string) | Steinar H. Gunderson | 1 | -1/+3 |
2015-08-19 | Move the logic from ComputeTable into the unit test, which means it's run | Steinar H. Gunderson | 1 | -164/+8 |
2015-08-03 | Fix signed-vs.-unsigned comparison warnings. | Steinar H. Gunderson | 1 | -4/+4 |
2015-07-06 | Initialized members of SnappyArrayWriter and SnappyDecompressionValidator. | Steinar H. Gunderson | 1 | -2/+3 |
2015-07-06 | Add support for Uncompress(source, sink). Various changes to allow | Steinar H. Gunderson | 1 | -1/+248 |
2015-06-22 | Change a few branch annotations that profiling found to be wrong. | Steinar H. Gunderson | 1 | -2/+2 |
2015-06-22 | Sync with various Google-internal changes. | Steinar H. Gunderson | 1 | -1/+0 |
2013-07-29 | When we compare the number of bytes produced with the offset for a | snappy.mirrorbot@gmail.com | 1 | -2/+13 |
2013-06-30 | In the fast path for decompressing literals, instead of checking | snappy.mirrorbot@gmail.com | 1 | -19/+27 |
2013-06-14 | Make the two IncrementalCopy* functions take in an ssize_t instead of a len, | snappy.mirrorbot@gmail.com | 1 | -4/+4 |
2013-06-13 | Add support for uncompressing to iovecs (scatter I/O). | snappy.mirrorbot@gmail.com | 1 | -0/+177 |
2013-06-12 | Some code reorganization needed for an internal change. | snappy.mirrorbot@gmail.com | 1 | -17/+8 |
2013-01-04 | Change a few ORs to additions where they don't matter. This helps the compiler | snappy.mirrorbot@gmail.com | 1 | -2/+2 |
2012-05-22 | Snappy library no longer depends on iostream. | snappy.mirrorbot@gmail.com | 1 | -33/+41 |
2012-02-23 | For 32-bit platforms, do not try to accelerate multiple neighboring | snappy.mirrorbot@gmail.com | 1 | -4/+37 |
2012-02-21 | Enable the use of unaligned loads and stores for ARM-based architectures | snappy.mirrorbot@gmail.com | 1 | -8/+8 |
2012-01-08 | Minor refactoring to accomodate changes in Google's internal code tree. | snappy.mirrorbot@gmail.com | 1 | -2/+11 |
2012-01-04 | Fix public issue r57: Fix most warnings with -Wall, mostly signed/unsigned | snappy.mirrorbot@gmail.com | 1 | -26/+25 |
2011-12-05 | Speed up decompression by moving the refill check to the end of the loop. | snappy.mirrorbot@gmail.com | 1 | -6/+18 |
2011-11-23 | Speed up decompression by making the fast path for literals faster. | snappy.mirrorbot@gmail.com | 1 | -22/+50 |
2011-06-28 | Fix public issue #44: Make the definition and declaration of CompressFragment | snappy.mirrorbot@gmail.com | 1 | -2/+2 |
2011-06-03 | Speed up decompression by removing a fast-path attempt. | snappy.mirrorbot@gmail.com | 1 | -2/+1 |
2011-06-03 | Speed up decompression by not needing a lookup table for literal items. | snappy.mirrorbot@gmail.com | 1 | -5/+15 |
2011-06-02 | Remove an unneeded goto in the decompressor; it turns out that the | snappy.mirrorbot@gmail.com | 1 | -7/+4 |
2011-06-02 | Speed up decompression by caching ip_. | snappy.mirrorbot@gmail.com | 1 | -36/+45 |
2011-03-26 | Change on 2011-03-25 19:18:00-07:00 by sesse | snappy.mirrorbot@gmail.com | 1 | -9/+23 |
2011-03-18 | Revision created by MOE tool push_codebase. | snappy.mirrorbot@gmail.com | 1 | -0/+1001 |