Home
last modified time | relevance | path

Searched +full:zstd +full:- +full:dll (Results 1 – 25 of 44) sorted by relevance

12

/external/zstd/lib/dll/example/
DREADME.md1 # ZSTD Windows binary package
5 - `zstd.exe` : Command Line Utility, supporting gzip-like arguments
6 - `dll\libzstd.dll` : The ZSTD dynamic library (DLL)
7 - `dll\libzstd.lib` : The import library of the ZSTD dynamic library (DLL) for Visual C++
8 - `example\` : The example of usage of the ZSTD library
9 - `include\` : Header files required by the ZSTD library
10 - `static\libzstd_static.lib` : The static ZSTD library (LIB)
14 Command Line Interface (CLI) supports gzip-like arguments.
17 Usage: zstd [arg] [input] [output]
19 The full list of commands for CLI can be obtained with `-h` or `-H`. The ratio can
[all …]
Dbuild_package.bat2 MKDIR bin\dll bin\static bin\example bin\include
13 COPY lib\dll\libzstd.* bin\dll\
14 COPY lib\dll\example\Makefile bin\example\
15 COPY lib\dll\example\fullbench-dll.* bin\example\
16 COPY lib\dll\example\README.md bin\
17 COPY lib\zstd.h bin\include\
20 COPY programs\zstd.exe bin\zstd.exe
Dfullbench-dll.vcxproj1 <?xml version="1.0" encoding="utf-8"?>
22 <ProjectGuid>{00000000-1CC8-4FD7-9281-6B8DBB9D3DF8}</ProjectGuid>
24 <RootNamespace>fullbench-dll</RootNamespace>
101 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr…
120 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr…
143 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr…
167 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr…
176 <ClInclude Include="..\include\zstd.h" />
/external/zstd/build/
DREADME.md6 The following projects are included with the zstd distribution:
7 - `cmake` - CMake project contributed by Artyom Dymchenko
8 - `VS2005` - Visual Studio 2005 Project (this project has been moved to the contrib directory and w…
9 - `VS2008` - Visual Studio 2008 project
10 - `VS2010` - Visual Studio 2010 project (which also works well with Visual Studio 2012, 2013, 2015)
11 - `VS_scripts` - command line scripts prepared for Visual Studio compilation without IDE
14 #### How to compile zstd with Visual Studio
17 2. Download the latest version of zstd from https://github.com/facebook/zstd/releases
19 4. Go to decompressed directory then to `projects` then `VS2010` and open `zstd.sln`
21 6. Change `Debug` to `Release` and if you have 64-bit Windows change also `Win32` to `x64`.
[all …]
/external/zstd/tests/
DMakefile6 # This source code is licensed under both the BSD-style license (found in the
9 # You may select, at your option, one of the above-listed licenses.
12 # fullbench : Precisely measure speed for each zstd inner functions
13 # fullbench32: Same as fullbench, but forced to compile in 32-bits mode
14 # fuzzer : Test tool, to check zstd integrity on target platform
15 # fuzzer32: Same as fuzzer, but forced to compile in 32-bits mode
16 # paramgrill : parameter tester for zstd
17 # test-zstd-speed.py : script for testing zstd speed difference between commits
18 # versionsTest : compatibility test between zstd versions stored on Github (v0.1+)
19 # zstreamtest : Fuzzer test tool for zstd streaming API
[all …]
D.gitignore4 fullbench-lib
7 fuzzer-dll
10 zbufftest-dll
16 zstreamtest-dll
40 !gzip/hufts-segv.gz
43 *.zstd
72 !golden-decompression/*.zst
/external/zstd/lib/
DREADME.md4 The __lib__ directory is split into several sub-directories,
10 …ventions](https://www.gnu.org/prep/standards/html_node/Makefile-Conventions.html#Makefile-Conventi…
12 - `make` : generates both static and dynamic libraries
13 - `make install` : install libraries and headers in target system directories
22 …by default the dynamic library is multithreaded and static library is single-threaded (for compati…
25 - set build macro `ZSTD_MULTITHREAD` (`-DZSTD_MULTITHREAD` for `gcc`)
26 - for POSIX systems : compile with pthread (`-pthread` compilation flag for `gcc`)
29 - Force enable multithreading on both dynamic and static libraries by appending `-mt` to the target…
30 - Force disable multithreading on both dynamic and static libraries by appending `-nomt` to the tar…
31 - By default, as mentioned before, dynamic library is multithreaded, and static library is single-t…
[all …]
DMakefile5 # This source code is licensed under both the BSD-style license (found in the
8 # You may select, at your option, one of the above-listed licenses.
12 lib-release:
57 # Note: by default, the static library is built single-threaded and dynamic library is built
58 # multi-threaded. It is possible to force multi or single threaded builds by appending
59 # -mt or -nomt to the build target (like lib-mt for multi-threaded, lib-nomt for single-threaded).
62 CPPFLAGS_DYNLIB += -DZSTD_MULTITHREAD # dynamic library build defaults to multi-threaded
63 LDFLAGS_DYNLIB += -pthread
64 CPPFLAGS_STATICLIB += # static library build defaults to single-threaded
68 decompress/zstd_decompress_block.o : CFLAGS+=-fno-tree-vectorize
[all …]
/external/zstd/programs/
DMakefile5 # This source code is licensed under both the BSD-style license (found in the
8 # You may select, at your option, one of the above-listed licenses.
10 # zstd : Command Line Utility, supporting gzip-like arguments
11 # zstd32 : Same as zstd, but forced to compile in 32-bits mode
12 # zstd-nolegacy : zstd without support of decompression of legacy versions
13 # zstd-small : minimal zstd without dictionary builder and benchmark
14 # zstd-compress : compressor-only version of zstd
15 # zstd-decompress : decompressor-only version of zstd
19 zstd-release:
24 ifeq ($(shell $(CC) -v 2>&1 | $(GREP) -c "gcc version "), 1)
[all …]
D.gitignore2 zstd
5 zstd-compress
6 zstd-decompress
7 zstd-frugal
8 zstd-small
9 zstd-nolegacy
10 zstd-dictBuilder
11 zstd-dll
/external/zstd/build/meson/lib/
Dmeson.build2 # Copyright (c) 2018-present Dima Krasner <dima@dimakrasner.com>
6 # This source code is licensed under both the BSD-style license (found in the
54 add_project_arguments('-DZSTD_DISABLE_ASM', language: 'c')
58 add_project_arguments('-DZSTD_LEGACY_SUPPORT=@0@'.format(legacy_level),
77 message('Enable multi-threading support')
78 add_project_arguments('-DZSTD_MULTITHREAD', language: 'c')
86 join_paths(zstd_rootdir, 'build/VS2010/libzstd-dll/libzstd-dll.rc'),
88 libzstd_c_args += ['-DZSTD_DLL_EXPORT=1',
89 '-DZSTD_HEAPMODE=0',
90 '-D_CONSOLE',
[all …]
/external/zstd/.github/workflows/
Dwindows-artifacts.yml1 name: windows-artifacts
8 - published
10 permissions: read-all
13 windows-artifacts:
14 # see https://ariya.io/2020/07/on-github-actions-with-msys2
15 runs-on: windows-latest
16 # see https://github.com/msys2/setup-msys2
20 - { msystem: mingw64, env: x86_64, ziparch: win64 }
21 - { msystem: mingw32, env: i686, ziparch: win32 }
26 - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v3
[all …]
Ddev-short-tests.yml1 name: dev-short-tests
6 group: fast-${{ github.ref }}
7 cancel-in-progress: true
13 permissions: read-all
16 linux-kernel:
17 runs-on: ubuntu-latest
19 - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1
20 - name: linux kernel, library + build + test
21 …run: make -C contrib/linux-kernel test CFLAGS="-Werror -Wunused-const-variable -Wunused-but-set-va…
24 runs-on: ubuntu-latest
[all …]
/external/zstd/build/VS2010/
Dzstd.sln4 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zstd", "zstd\zstd.vcxproj", "{4E52A41A-F33B-4C…
6 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fuzzer", "fuzzer\fuzzer.vcxproj", "{6FD4352B-3…
8 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench", "fullbench\fullbench.vcxproj", "{6…
10 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench-dll", "fullbench-dll\fullbench-dll.v…
12 {00000000-94D5-4BF9-8A50-7BD9929A0850} = {00000000-94D5-4BF9-8A50-7BD9929A0850}
15 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "datagen", "datagen\datagen.vcxproj", "{037E781…
17 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libzstd", "libzstd\libzstd.vcxproj", "{8BFD815…
19 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libzstd-dll", "libzstd-dll\libzstd-dll.vcxproj…
29 {4E52A41A-F33B-4C7A-8C36-A1A6B4F4277C}.Debug|Win32.ActiveCfg = Debug|Win32
30 {4E52A41A-F33B-4C7A-8C36-A1A6B4F4277C}.Debug|Win32.Build.0 = Debug|Win32
[all …]
/external/zstd/
D.gitignore11 *.dll
17 /zstd
26 *.zstd
34 contrib/linux-kernel/linux/
38 buck-out/
39 build-*
45 .clang-format
57 *.code-workspace
DCHANGELOG6 lib: reduce binary size with selective built-time exclusion, by @felixhandte
11 lib: fix zdict prototype mismatch in static_only mode, by @ldv-alt
12 lib: fix several bugs in magicless-format decoding, by @embg
13 cli: add common compressed file types to `--exclude-compressed`` by @daniellerozenblit
14 cli: fix mixing `-c` and `-o` commands with `--rm`, by @Cyan4973
15 cli: fix erroneous exclusion of hidden files with `--output-dir-mirror` by @felixhandte
20 …rovements by @terrelln, @sighingnow, @gjasny, @JohanMabille, @Saverio976, @gruenich, @teo-tsirpanis
22 build: fix cross-compiling for AArch64 with lld by @jcelerier
31 port: risc-v support validation in CI, by @Cyan4973
34 port: HP-UX compatibility, by @likema
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/
DCMakeLists.txt6 # ManagedStatic can be used to enable lazy-initialization of globals.
10 check_cxx_compiler_flag("-Werror=global-constructors" HAS_WERROR_GLOBAL_CTORS)
12 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror=global-constructors")
20 string(REPLACE "-Werror=global-constructors" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
29 if(TARGET zstd::libzstd_shared AND NOT LLVM_USE_STATIC_ZSTD)
30 set(zstd_target zstd::libzstd_shared)
32 set(zstd_target zstd::libzstd_static)
54 # regular short library name, suitable for appending to a -l link flag.
79 # Delay load shell32.dll if possible to speed up process startup.
82 set (delayload_flags delayimp -delayload:shell32.dll -delayload:ole32.dll)
[all …]
/external/zstd/build/VS2010/libzstd-dll/
Dlibzstd-dll.rc4 #include "zstd.h" /* ZSTD_VERSION_STRING */
36 VALUE "FileDescription", "Zstandard - Fast and efficient compression algorithm"
38 VALUE "InternalName", "libzstd.dll"
40 VALUE "OriginalFilename", "libzstd.dll"
/external/lzma/DOC/
DLicense.txt1 7-Zip source code
6 7-Zip Copyright (C) 1999-2024 Igor Pavlov.
10 - CPP/7zip/Compress/Rar* files: the "GNU LGPL" with "unRAR license restriction"
11 - CPP/7zip/Compress/LzfseDecoder.cpp: the "BSD 3-clause License"
12 - C/ZstdDec.c: the "BSD 3-clause License"
13 - C/Xxh64.c: the "BSD 2-clause License"
14 - Some files are "public domain" files, if "public domain" status is stated in source file.
15 - the "GNU LGPL" for all other files. If there is no license information in
25 --------------------
45 BSD 3-clause License in 7-Zip code
[all …]
/external/mesa3d/
Dmeson_options.txt1 # Copyright © 2017-2019 Intel Corporation
2 # SPDX-License-Identifier: MIT
16 'egl-native-platform',
27 'android-stub',
30 description : 'Build against android-stub',
34 'android-strict',
43 'android-libbacktrace',
56 'dri-drivers-path',
63 'dri-search-path',
67 'separated list. Default: dri-drivers-path.'
[all …]
/external/bazelbuild-rules_python/python/
Drepositories.bzl7 # http://www.apache.org/licenses/LICENSE-2.0
53 …https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib
54 … "https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
126 working_directory = "zstd-{version}".format(version = rctx.attr.zstd_version)
129 [which_with_fail("make", rctx), "--jobs=4"],
136 … "Failed to compile 'zstd' from source for use in Python interpreter extraction. " +
140 zstd = "{working_directory}/zstd".format(working_directory = working_directory)
142 rctx.symlink(zstd, unzstd)
146 "--extract",
147 "--strip-components=2",
[all …]
/external/zstd/build/cmake/lib/
DCMakeLists.txt5 # This source code is licensed under both the BSD-style license (found in the
40 add_compile_options(-DZSTD_DISABLE_ASM)
45 add_compile_options(-DZSTD_DISABLE_ASM)
101 set(MSVC_RESOURCE_DIR ${ZSTD_SOURCE_DIR}/build/VS2010/libzstd-dll)
102 set(PlatformDependResources ${MSVC_RESOURCE_DIR}/libzstd-dll.rc)
199 set(STATIC_LIBRARY_BASE_NAME zstd)
207 OUTPUT_NAME zstd
220 # pkg-config
252 COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)
/external/curl/.github/scripts/
Dspellcheck.words3 # SPDX-License-Identifier: curl
51 AWS-LC
193 DLL
194 dll
959 zstd
/external/curl/docs/libcurl/
Dcurl_version_info.md1 ---
3 SPDX-License-Identifier: curl
7 See-also:
8 - curl_version (3)
10 - All
11 ---
15 curl_version_info - returns runtime libcurl version info
37 or not, instead of using compile-time checks, as dynamic/DLL libraries can be
41 curl_global_init(3) has not been called. It is therefore not thread-safe
89 const char *cainfo; /* the built-in default CURLOPT_CAINFO, might
[all …]
/external/sdv/vsomeip/third_party/boost/
Dboost-1_76_0.json10 "-msse4.1"
16 "-Wall",
17 "-Werror",
18 "-fexceptions"
35 "dll",
60 "-DBOOST_ASIO_HAS_STD_STRING_VIEW"
76 "-Wno-expansion-to-defined"
90 "-DBOOST_DATE_TIME_DYN_LINK",
91 "-Wno-ignored-attributes",
92 "-DBOOST_NO_STD_WSTRING"
[all …]

12