summaryrefslogtreecommitdiff
path: root/snappy_unittest.cc
Commit message (Expand)AuthorAgeFilesLines
* Fix the remaining occurrence of non-const `std::string::data()`.Marcin Kowalczyk2022-10-081-1/+1
* Fix compilation errors under C++11.Matt Callanan2022-10-081-1/+1
* Add `snappy::CompressFromIOVec`.Matt Callanan2022-09-291-18/+62
* Migrate feature detection macro checks from #ifdef to #if.Victor Costan2021-08-161-2/+2
* Clarify, in a comment, that offset/256 fits in 3 bits. It has to in this con...Snappy Team2021-05-251-1/+1
* Add stubs for abseil flags.Victor Costan2021-03-081-4/+4
* Add absl::GetFlag and absl::SetFlag to uses of flags.Snappy Team2021-02-171-3/+3
* Split benchmarks and test tools into separate targets.Victor Costan2020-12-161-664/+8
* Wrap snappy_unittest in an anonymous namespace and remove static from functions.Victor Costan2020-12-151-31/+25
* Remove custom testing and benchmarking code.Victor Costan2020-12-141-104/+104
* 1) Improve the lookup table data to require less instructions to extract the ...Snappy Team2020-12-141-2/+2
* Optimize zippy decompression by making IncrementalCopy faster.Shahriar Rouf2020-12-141-0/+41
* Fix opensource versionSnappy Team2020-11-191-7/+6
* Add LZ4 as a benchmark option. Snappy is starting to look really good compare...Snappy Team2020-11-181-9/+37
* Extend validate benchmarks over all types and also add a medley for validation.Snappy Team2020-11-181-15/+36
* Add a benchmark that decreased the branch prediction memorization by increasi...Snappy Team2020-11-181-0/+27
* Fix Clang/GCC compilation warnings.Victor Costan2020-05-051-6/+6
* Tighten types on a few for loops.Victor Costan2020-05-041-45/+50
* Add some std:: qualifiers to types and functions.Victor Costan2020-04-291-14/+14
* Switch from C headers to C++ headers.Victor Costan2020-04-291-2/+2
* Migrate to standard integral types.Victor Costan2020-04-121-26/+26
* Modernize memcpy() and memmove() usage.Victor Costan2020-04-121-1/+1
* assertion failure on darwin_x86_64, have to investigageSnappy Team2020-04-111-1/+2
* assertion failure on darwin_x86_64, have to investigageSnappy Team2020-04-111-2/+1
* This cl does two thingsSnappy Team2020-04-111-1/+2
* Fix one forgotten instance of StringPrintf -> StrFormat.Victor Costan2019-11-041-1/+1
* Fix build errors.Victor Costan2019-11-031-7/+8
* Internal changesSnappy Team2019-11-031-6/+6
* Fully qualify std::string.Victor Costan2019-09-261-88/+87
* Fix benchmarks.Victor Costan2019-08-201-1/+2
* Fix benchmarks.Victor Costan2019-08-201-4/+13
* Add BM_ZFlatAll, BM_ZFlatIncreasingTableSize benchmarks to see how good zippy...Shahriar Rouf2019-08-191-0/+63
* Sync TODO and comment processing with external repo.Chris Mumford2019-05-141-2/+0
* Remove use of std::uniform_distribution<uint8_t>.costan2019-01-061-6/+6
* Use std random number generators in tests.costan2019-01-041-31/+55
* Migrate to use absl::randomjueminyang2019-01-041-9/+10
* Reduce number of allocations when compressing and simplify the code.alkis2019-01-041-1/+1
* Improve performance of zippy decompression to IOVecs by up to almost 50%jefflim2018-08-071-1/+1
* Replace getpagesize() with sysconf(_SC_PAGESIZE).costan2017-08-011-4/+5
* Remove benchmarking support for fastlz.ysaed2017-06-281-38/+2
* Remove quicklz and lzf support in benchmarks.jyrki2017-06-051-86/+2
* Clean up unused function warnings in snappy.costan2017-03-171-6/+4
* Remove "using namespace std;" from zippy-stubs-internal.h.costan2017-03-131-3/+3
* Add std:: prefix to STL non-type names.scrubbed2017-03-081-2/+2
* adds std:: to stl types (#061)Behzad Nouri2017-01-261-5/+6
* Re-work fast path that emits copies in zippy compression.Geoff Pike2017-01-261-3/+4
* Fix an issue where the ByteSource path (used for parsing std::string)Steinar H. Gunderson2016-01-041-0/+14
* Move the logic from ComputeTable into the unit test, which means it's runSteinar H. Gunderson2015-08-191-0/+97
* Add support for Uncompress(source, sink). Various changes to allowSteinar H. Gunderson2015-07-061-0/+72
* Changes to eliminate compiler warnings on MSVCSteinar H. Gunderson2015-06-221-12/+13