Age | Commit message (Expand) | Author | Files | Lines |
2012-01-08 | Minor refactoring to accomodate changes in Google's internal code tree. | snappy.mirrorbot@gmail.com | 3 | -3/+12 |
2012-01-04 | Fix public issue r57: Fix most warnings with -Wall, mostly signed/unsigned | snappy.mirrorbot@gmail.com | 6 | -36/+32 |
2012-01-04 | Add a framing format description. We do not have any implementation of this at | snappy.mirrorbot@gmail.com | 2 | -1/+125 |
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-11-08 | Fix public issue #53: Update the README to the API we actually open-sourced | snappy.mirrorbot@gmail.com | 1 | -2/+2 |
2011-10-05 | In the format description, use a clearer example to emphasize that varints are | snappy.mirrorbot@gmail.com | 1 | -3/+3 |
2011-09-15 | Release Snappy 1.0.4. | snappy.mirrorbot@gmail.com | 3 | -2/+182 |
2011-09-15 | Fix public issue #50: Include generic byteswap macros. | snappy.mirrorbot@gmail.com | 2 | -2/+40 |
2011-08-10 | Partially fix public issue 50: Remove an extra comma from the end of some | snappy.mirrorbot@gmail.com | 1 | -2/+2 |
2011-08-10 | Use the right #ifdef test for sys/mman.h. | snappy.mirrorbot@gmail.com | 1 | -1/+1 |
2011-08-10 | Fix public issue #47: Small comment cleanups in the unit test. | snappy.mirrorbot@gmail.com | 1 | -2/+2 |
2011-08-10 | Fix public issue #46: Format description said "3-byte offset" | snappy.mirrorbot@gmail.com | 1 | -3/+3 |
2011-06-28 | Fix public issue #44: Make the definition and declaration of CompressFragment | snappy.mirrorbot@gmail.com | 1 | -2/+2 |
2011-06-04 | Correct an inaccuracy in the Snappy format description. | snappy.mirrorbot@gmail.com | 1 | -1/+1 |
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 | Release Snappy 1.0.3. | snappy.mirrorbot@gmail.com | 3 | -2/+179 |
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-05-17 | Fix the numbering of the headlines in the Snappy format description. | snappy.mirrorbot@gmail.com | 1 | -4/+4 |
2011-05-16 | Fix public issue #32: Add compressed format documentation for Snappy. | snappy.mirrorbot@gmail.com | 2 | -1/+111 |
2011-05-09 | Fix public issue #39: Pick out the median runs based on CPU time, | snappy.mirrorbot@gmail.com | 1 | -2/+5 |
2011-05-09 | Fix public issue #38: Make the microbenchmark framework handle | snappy.mirrorbot@gmail.com | 1 | -2/+7 |
2011-05-03 | Fix public issue #37: Only link snappy_unittest against -lz and other autodet... | snappy.mirrorbot@gmail.com | 2 | -6/+20 |
2011-05-03 | Release Snappy 1.0.2, to get the license change and various other fixes into | snappy.mirrorbot@gmail.com | 3 | -2/+238 |
2011-04-26 | Fix public issue #30: Stop using gettimeofday() altogether on Win32, | snappy.mirrorbot@gmail.com | 2 | -9/+45 |
2011-04-26 | Fix public issue #31: Don't reset PATH in autogen.sh; instead, do the trickery | snappy.mirrorbot@gmail.com | 1 | -1/+0 |
2011-04-15 | When including <windows.h>, define WIN32_LEAN_AND_MEAN first, | snappy.mirrorbot@gmail.com | 1 | -0/+1 |
2011-04-11 | Fix public issue #29: Write CPU timing code for Windows, based on GetProcessT... | snappy.mirrorbot@gmail.com | 3 | -4/+40 |
2011-04-08 | Include C bindings of Snappy, contributed by Martin Gieseking. | snappy.mirrorbot@gmail.com | 4 | -5/+236 |
2011-04-07 | Replace geo.protodata with a newer version. | snappy.mirrorbot@gmail.com | 1 | -0/+0 |
2011-03-30 | Fix public issue #27: Add HAVE_CONFIG_H tests around the config.h | snappy.mirrorbot@gmail.com | 1 | -1/+4 |
2011-03-30 | Fix public issue #26: Take memory allocation and reallocation entirely out of... | snappy.mirrorbot@gmail.com | 1 | -23/+83 |
2011-03-30 | Renamed "namespace zippy" to "namespace snappy" to reduce | snappy.mirrorbot@gmail.com | 1 | -7/+7 |
2011-03-28 | Put back the final few lines of what was truncated during the | snappy.mirrorbot@gmail.com | 2 | -1/+5 |
2011-03-26 | Change on 2011-03-25 19:18:00-07:00 by sesse | snappy.mirrorbot@gmail.com | 6 | -59/+140 |
2011-03-25 | Change Snappy from the Apache 2.0 to a BSD-type license. | snappy.mirrorbot@gmail.com | 7 | -249/+145 |
2011-03-25 | Release Snappy 1.0.1, to soup up all the various small changes | snappy.mirrorbot@gmail.com | 3 | -4/+264 |
2011-03-24 | Fix a microbenchmark crash on mingw32; seemingly %lld is not universally | snappy.mirrorbot@gmail.com | 1 | -1/+6 |
2011-03-24 | Fix public issue #19: Fix unit test when Google Test is installed but the | snappy.mirrorbot@gmail.com | 1 | -1/+2 |
2011-03-24 | Make the unit test work on systems without mmap(). This is required for, | snappy.mirrorbot@gmail.com | 1 | -4/+9 |
2011-03-24 | Make the unit test work on systems without mmap(). This is required for, | snappy.mirrorbot@gmail.com | 3 | -1/+9 |
2011-03-23 | Fix public issue #12: Don't keep autogenerated auto* files in Subversion; | snappy.mirrorbot@gmail.com | 23 | -88757/+0 |
2011-03-23 | Fix public issue tracker bug #3: Call AC_SUBST([LIBTOOL_DEPS]), or the rule | snappy.mirrorbot@gmail.com | 7 | -337/+349 |
2011-03-23 | Fix public issue #10: Don't add GTEST_CPPFLAGS to snappy_unittest_CXXFLAGS; | snappy.mirrorbot@gmail.com | 2 | -13/+10 |
2011-03-23 | Fix public issue #9: Add -Wall -Werror to automake flags. | snappy.mirrorbot@gmail.com | 6 | -769/+785 |
2011-03-23 | Fix a typo in the Snappy README file. | snappy.mirrorbot@gmail.com | 1 | -1/+1 |
2011-03-23 | Fix public issue #6: Add a --with-gflags for disabling gflags autodetection | snappy.mirrorbot@gmail.com | 6 | -172/+255 |
2011-03-23 | Fix public issue #5: Replace the EXTRA_LIBSNAPPY_LDFLAGS setup with something | snappy.mirrorbot@gmail.com | 8 | -67/+54 |