Searched +full:liblz4 +full:- +full:dev (Results 1 – 14 of 14) sorted by relevance
| /external/lz4/ |
| D | Makefile.inc | 2 # LZ4 - Makefile common definitions 29 # - LZ4 source repository : https://github.com/lz4/lz4 30 # - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c 41 LIBLZ4 = liblz4-$(LIBVER_MAJOR) 42 LIBLZ4_EXP = liblz4.lib 45 LIBLZ4_EXP = liblz4.dll.a 47 LIBLZ4 = liblz4 51 LIBLZ4 = msys-lz4-$(LIBVER_MAJOR) 55 LIBLZ4 = cyglz4-$(LIBVER_MAJOR) 58 LIBLZ4 = liblz4.$(SHARED_EXT_VER) [all …]
|
| D | Makefile | 2 # LZ4 - Makefile 3 # Copyright (C) Yann Collet 2011-2020 29 # - LZ4 source repository : https://github.com/lz4/lz4 30 # - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c 43 default: lib-release lz4-release 54 .PHONY: lib lib-release liblz4.a 55 lib: liblz4.a 56 lib lib-release liblz4.a: 57 $(MAKE) -C $(LZ4DIR) $@ 59 .PHONY: lz4 lz4-release [all …]
|
| D | NEWS | 3 perf : faster decoding speed (~+70%) for -BD4 setting in CLI 9 cli : `--list` works on `stdin` input, by @Low-power 10 cli : `--no-crc` does not produce (compression) nor check (decompression) checksums 11 cli : fix: `--test` and `--list` produce an error code when parsing invalid input 14 build: `LZ4_FREESTANDING`, new build macro for freestanding environments, by @t-mat 15 build: `make` and `make test` are compatible with `-j` parallel run 18 build: MSVC 2022 support, by @t-mat 19 build: improved meson script, by @eli-schwartz 31 api : fix alignment test on 32-bit systems (state initialization) 33 cli : `-l` legacy format is now compatible with `-m` multiple files, by Filipe Calasans [all …]
|
| /external/oss-fuzz/projects/libarchive/ |
| D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 FROM gcr.io/oss-fuzz-base/base-builder 19 RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config \ 20 libbz2-dev liblzo2-dev liblzma-dev liblz4-dev libz-dev \ 21 libssl-dev libacl1-dev libattr1-dev lrzip \ 22 liblz4-tool lzop zstd lcab genisoimage jlha-utils rar default-jdk 23 RUN git clone --depth 1 https://github.com/libarchive/libarchive.git 24 RUN git clone --depth 1 https://gitlab.gnome.org/GNOME/libxml2.git
|
| /external/lz4/contrib/debian/ |
| D | control | 1 Source: liblz4 5 Build-Depends: 9 Standards-Version: 3.8.0 11 Vcs-Git: git://github.com/lz4/lz4.git 12 Vcs-Browser: https://github.com/lz4/lz4 14 Package: liblz4 19 Package: liblz4-dev
|
| D | copyright | 1 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 Upstream-Name: liblz4 3 Upstream-Contact: Yann Collet <Cyan4973@github.com> 7 Copyright: (C) 2011-2020 Yann Collet 8 License: GPL-2+ 9 The full text of license: https://github.com/lz4/lz4/blob/dev/lib/LICENSE
|
| /external/oss-fuzz/projects/pcl/ |
| D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 FROM gcr.io/oss-fuzz-base/base-builder 18 RUN apt-get update && apt-get install -y make cmake autoconf \ 19 automake libtool gettext pkg-config build-essential \ 20 mercurial wget libeigen3-dev libflann-dev python python-dev 23 RUN apt-get update && apt-get install -y \ 24 libavcodec-dev libavformat-dev libavutil-dev libboost-dev \ 25 libdouble-conversion-dev libeigen3-dev libexpat1-dev \ 26 libfontconfig-dev libfreetype6-dev libgdal-dev libglew-dev \ 27 libhdf5-dev libjpeg-dev libjsoncpp-dev liblz4-dev liblzma-dev \ [all …]
|
| /external/mesa3d/.gitlab-ci/container/debian/ |
| D | x86_64_test-vk.sh | 6 set -e 7 set -o xtrace 11 apt-get install -y libelogind0 # this interfere with systemd deps, install separately 18 glslang-tools 19 libexpat1-dev 21 libdrm-dev 22 libgbm-dev 23 libgles2-mesa-dev 24 liblz4-dev 25 libpciaccess-dev [all …]
|
| D | x86_64_test-base.sh | 5 # .gitlab-ci/image-tags.yml tags: 8 set -e 9 set -o xtrace 13 apt-get install -y ca-certificates gnupg2 software-properties-common 15 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list.d/* 17 …b.freedesktop.org/gfx-ci/ci-deb-repo/-/raw/${PKG_REPO_REV}/ ${FDO_DISTRIBUTION_VERSION%-*} main" |… 30 "clang-${LLVM_VERSION}" 32 glslang-tools 34 libasound2-dev 35 libcap-dev [all …]
|
| /external/lz4/lib/dll/example/ |
| D | Makefile | 2 # LZ4 programs - Makefile 3 # Copyright (C) Yann Collet 2016-2020 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 26 VOID := /dev/null 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 [all …]
|
| /external/f2fs-tools/ |
| D | configure.ac | 1 # -*- Autoconf -*- 7 m4_define([f2fs_tools_version], m4_esyscmd([sed -n '1p' VERSION | tr -d '\n'])) 8 m4_define([f2fs_tools_date], m4_esyscmd([sed -n '2p' VERSION | tr -d '\n'])) 10 m4_esyscmd([git log -1 --pretty=format:%ci 2> /dev/null])) 13 [linux-f2fs-devel@lists.sourceforge.net]) 17 AC_DEFINE([F2FS_TOOLS_VERSION], "f2fs_tools_version", [f2fs-tools version]) 19 [\([0-9]*\)\(\w\|\W\)*], [\1]), 20 [Major version for f2fs-tools]) 22 [\([0-9]*\).\([0-9]*\)\(\w\|\W\)*], [\2]), 23 [Minor version for f2fs-tools]) [all …]
|
| /external/lz4/tests/ |
| D | Makefile | 2 # LZ4 programs - Makefile 3 # Copyright (C) Yann Collet 2011-2020 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 37 DEBUGFLAGS = -g -DLZ4_DEBUG=$(DEBUGLEVEL) 38 CFLAGS ?= -O3 # can select custom optimization flags. Example : CFLAGS=-O2 make 39 CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow \ 40 -Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes \ 41 -Wpointer-arith -Wstrict-aliasing=1 [all …]
|
| /external/zstd/programs/ |
| D | Makefile | 5 # 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 …]
|
| /external/zstd/.github/workflows/ |
| D | dev-short-tests.yml | 1 name: dev-short-tests 6 group: fast-${{ github.ref }} 7 cancel-in-progress: true 11 branches: [ dev, release, actionsTest ] 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… [all …]
|