Searched +full:fullbench +full:- +full:dll (Results 1 – 12 of 12) sorted by relevance
/external/lz4/lib/dll/example/ |
D | README.md | 6 - `lz4.exe` : Command Line Utility, supporting gzip-like arguments 7 - `dll\liblz4.dll` : The DLL of LZ4 library 8 - `dll\liblz4.lib` : The import library of LZ4 library for Visual C++ 9 - `example\` : The example of usage of LZ4 library 10 - `include\` : Header files required with LZ4 library 11 - `static\liblz4_static.lib` : The static LZ4 library 16 Command Line Interface (CLI) supports gzip-like arguments. 21 The full list of commands for CLI can be obtained with `-h` or `-H`. The ratio can 22 be improved with commands from `-3` to `-16` but higher levels also have slower 23 compression. CLI includes in-memory compression benchmark module with compression [all …]
|
D | Makefile | 2 # LZ4 programs - Makefile 19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 22 # - LZ4 homepage : http://www.lz4.org 23 # - LZ4 source repository : https://github.com/lz4/lz4 29 DLLDIR := ../dll 31 CFLAGS ?= -O3 # can select custom flags. For example : CFLAGS="-O2 -g" make 32 CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow -Wswitch-enum \ 33 -Wdeclaration-after-statement -Wstrict-prototypes \ 34 -Wpointer-arith -Wstrict-aliasing=1 36 CPPFLAGS:= -I$(LZ4DIR) -DXXH_NAMESPACE=LZ4_ [all …]
|
D | fullbench-dll.sln | 3 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench-dll", "fullbench-dll.vcxproj", "{139… 13 {13992FD2-077E-4954-B065-A428198201A9}.Debug|Win32.ActiveCfg = Debug|Win32 14 {13992FD2-077E-4954-B065-A428198201A9}.Debug|Win32.Build.0 = Debug|Win32 15 {13992FD2-077E-4954-B065-A428198201A9}.Debug|x64.ActiveCfg = Debug|x64 16 {13992FD2-077E-4954-B065-A428198201A9}.Debug|x64.Build.0 = Debug|x64 17 {13992FD2-077E-4954-B065-A428198201A9}.Release|Win32.ActiveCfg = Release|Win32 18 {13992FD2-077E-4954-B065-A428198201A9}.Release|Win32.Build.0 = Release|Win32 19 {13992FD2-077E-4954-B065-A428198201A9}.Release|x64.ActiveCfg = Release|x64 20 {13992FD2-077E-4954-B065-A428198201A9}.Release|x64.Build.0 = Release|x64
|
D | fullbench-dll.vcxproj | 1 <?xml version="1.0" encoding="utf-8"?> 22 <ProjectGuid>{13992FD2-077E-4954-B065-A428198201A9}</ProjectGuid> 24 <RootNamespace>fullbench-dll</RootNamespace> 99 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr… 119 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr… 141 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr… 165 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr… 171 <ClCompile Include="fullbench.c" />
|
/external/lz4/ |
D | appveyor.yml | 4 - COMPILER: "visual" 7 - COMPILER: "visual" 10 - COMPILER: "visual" 13 - COMPILER: "visual" 16 - COMPILER: "gcc" 18 - COMPILER: "gcc" 20 - COMPILER: "gcc" 24 - ECHO Installing %COMPILER% %PLATFORM% %CONFIGURATION% 25 - MKDIR bin 26 - if [%COMPILER%]==[gcc] SET PATH_ORIGINAL=%PATH% [all …]
|
D | NEWS | 4 cli : new command --fast, by @jennifermliu 16 cli : new command --favor-decSpeed 18 fullbench : can bench _destSize() variants, by @felixhandte 24 perf : fix bad degenerative case, reported by @c-morgenstern 26 cli : support for dictionary compression (`-D`), by Felix Handte @felixhandte 27 cli : fix : `lz4 -d --rm` preserves timestamp (#441) 30 build : `make` and `make test` compatible with `-jX`, reported by @mwgamera 36 cli : added GNU separator -- specifying that all following arguments are files 46 doc : Updated LZ4 Frame format to v1.6.0, restoring Dictionary-ID field 50 lz4hc : new high compression mode : levels 10-12 compress more and slower, by Przemyslaw Skibinski [all …]
|
/external/lz4/visual/ |
D | README.md | 7 - `VS2010` - Visual Studio 2010 project (which also works well with Visual Studio 2012, 2013, 2015) 17 6. Change `Debug` to `Release` and if you have 64-bit Windows change also `Win32` to `x64`. 29 - `lz4` : Command Line Utility, supporting gzip-like arguments 30 - `datagen` : Synthetic and parametrable data generator, for tests 31 - `frametest` : Test tool that checks lz4frame integrity on target platform 32 - `fullbench` : Precisely measure speed for each lz4 inner functions 33 - `fuzzer` : Test tool, to check lz4 integrity on target platform 34 - `liblz4` : A static LZ4 library compiled to `liblz4_static.lib` 35 - `liblz4-dll` : A dynamic LZ4 library (DLL) compiled to `liblz4.dll` with the import library `libl… 36 - `fullbench-dll` : The fullbench program compiled with the import library; the executable requires… [all …]
|
/external/lz4/visual/VS2010/ |
D | lz4.sln | 3 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lz4", "lz4\lz4.vcxproj", "{E30329AC-0057-4FE0-… 5 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "liblz4-dll", "liblz4-dll\liblz4-dll.vcxproj", … 7 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "liblz4", "liblz4\liblz4.vcxproj", "{9092C5CC-3… 9 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fuzzer", "fuzzer\fuzzer.vcxproj", "{18B9F1A7-9… 11 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench", "fullbench\fullbench.vcxproj", "{6… 13 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "frametest", "frametest\frametest.vcxproj", "{3… 15 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "datagen", "datagen\datagen.vcxproj", "{D745AE2… 17 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench-dll", "fullbench-dll\fullbench-dll.v… 19 {9800039D-4AAA-43A4-BB78-FEF6F4836927} = {9800039D-4AAA-43A4-BB78-FEF6F4836927} 30 {E30329AC-0057-4FE0-8FDA-7F650D398C4C}.Debug|Win32.ActiveCfg = Debug|Win32 [all …]
|
/external/lz4/visual/VS2017/ |
D | lz4.sln | 3 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lz4", "lz4\lz4.vcxproj", "{E30329AC-0057-4FE0-… 5 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "liblz4-dll", "liblz4-dll\liblz4-dll.vcxproj", … 7 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "liblz4", "liblz4\liblz4.vcxproj", "{9092C5CC-3… 9 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fuzzer", "fuzzer\fuzzer.vcxproj", "{18B9F1A7-9… 11 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench", "fullbench\fullbench.vcxproj", "{6… 13 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "frametest", "frametest\frametest.vcxproj", "{3… 15 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "datagen", "datagen\datagen.vcxproj", "{D745AE2… 17 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench-dll", "fullbench-dll\fullbench-dll.v… 19 {9800039D-4AAA-43A4-BB78-FEF6F4836927} = {9800039D-4AAA-43A4-BB78-FEF6F4836927} 30 {E30329AC-0057-4FE0-8FDA-7F650D398C4C}.Debug|Win32.ActiveCfg = Debug|Win32 [all …]
|
/external/lz4/tests/ |
D | Makefile | 2 # LZ4 programs - Makefile 3 # Copyright (C) Yann Collet 2011-present 19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 22 # - LZ4 homepage : http://www.lz4.org 23 # - LZ4 source repository : https://github.com/lz4/lz4 27 # fullbench : Precisely measure speed for each LZ4 function variant 37 DEBUGFLAGS = -g -DLZ4_DEBUG=$(DEBUGLEVEL) 38 CFLAGS ?= -O3 # can select custom optimization flags. For example : CFLAGS=-O2 make 39 CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow \ 40 -Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes \ [all …]
|
/external/lz4/visual/VS2010/fullbench-dll/ |
D | fullbench-dll.vcxproj | 1 <?xml version="1.0" encoding="utf-8"?> 22 <ProjectGuid>{13992FD2-077E-4954-B065-A428198201A9}</ProjectGuid> 24 <RootNamespace>fullbench-dll</RootNamespace> 169 <ClCompile Include="..\..\..\tests\fullbench.c" />
|
/external/lz4/visual/VS2017/fullbench-dll/ |
D | fullbench-dll.vcxproj | 1 <?xml version="1.0" encoding="utf-8"?> 22 <ProjectGuid>{13992FD2-077E-4954-B065-A428198201A9}</ProjectGuid> 24 <RootNamespace>fullbench-dll</RootNamespace> 173 <ClCompile Include="..\..\..\tests\fullbench.c" />
|