summaryrefslogtreecommitdiffstats
path: root/programs/util.h
Commit message (Collapse)AuthorAgeFilesLines
* added a test case for LZ4_decompress_fast_usingDictCyan49732018-04-291-1/+1
| | | | | | | with a separated dictionary since a joined dictionary is now detected as prefix64K. Also : fixed a minor warning under msys
* fixed minor declaration issue with clang on msysCyan49732018-04-231-1/+2
|
* ensure bench speed measurement is more accurate for small inputsYann Collet2018-02-201-1/+7
| | | | | | | | | | | | Previous method would produce too many time() invocations, becoming a significant fraction of workload measured. The new strategy is to use time() only once per batch, and dynamically resize batch size so that each round lasts approximately 1 second. This only matters for small inputs. Measurement for large files (such as silesia.tar) are much less impacted (though decoding speed is so fast that even medium-size files will notice an improvement).
* use more restrictive conditions for clock_gettime()Yann Collet2018-01-161-1/+8
|
* [lz4io] Refuse to set file stat for non-regular filesNick Terrell2018-01-051-0/+6
|
* [bench] Use higher resolution timer on POSIXNick Terrell2017-10-171-28/+99
| | | | | | | The timer used was only accurate up to 0.01 seconds. This timer is accurate up to 1 ns. It is a monotonic timer that measures the real time difference, not on CPU time. Copied the benchmark code from https://github.com/facebook/zstd/commit/6ab4d5e9041aba962a810ffee191f95897c6208e
* fix #332 : do not modify /dev/null permissionsYann Collet2017-03-161-5/+5
|
* upgraded util.hPrzemyslaw Skibinski2017-02-151-43/+60
|
* use FindFirstFileA and FindNextFileA on WindowsPrzemyslaw Skibinski2016-12-221-3/+3
|
* util.h and platform.h based on zstdPrzemyslaw Skibinski2016-12-211-35/+37
|
* executables use basic types from util.hPrzemyslaw Skibinski2016-12-211-6/+5
|
* fixed gcc warningsPrzemyslaw Skibinski2016-12-201-0/+2
|
* improved platform.hPrzemyslaw Skibinski2016-12-201-41/+0
|
* updated util.hPrzemyslaw Skibinski2016-12-201-58/+70
|
* Fix license and remove references to zstdNick Terrell2016-11-111-1/+1
|
* updated #include in util.hPrzemyslaw Skibinski2016-11-041-0/+2
|
* bench.c based on zstdPrzemyslaw Skibinski2016-11-041-9/+22
|
* added -r optionPrzemyslaw Skibinski2016-11-041-0/+488