HomeSort by relevance Sort by last modified time
    Searched refs:lz4 (Results 1 - 25 of 37) sorted by null

1 2

  /external/lz4/contrib/gen_manual/
gen-lz4-manual.sh 3 LIBVER_MAJOR_SCRIPT=`sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ../../lib/lz4.h`
4 LIBVER_MINOR_SCRIPT=`sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ../../lib/lz4.h`
5 LIBVER_PATCH_SCRIPT=`sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ../../lib/lz4.h`
9 ./gen_manual "lz4 $LIBVER_SCRIPT" ../../lib/lz4.h ./lz4_manual.html
Makefile 28 # - LZ4 source repository : https://github.com/Cyan4973/lz4
29 # - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c
38 LZ4API = ../../lib/lz4.h
63 echo "Update lz4 manual in /doc"
  /external/lz4/programs/
Makefile 2 # LZ4 programs - Makefile
24 # - LZ4 homepage : http://www.lz4.org
25 # - LZ4 source repository : https://github.com/Cyan4973/lz4
27 # lz4 : Command Line Utility, supporting gzip-like arguments
34 LIBVER_SRC := $(LZ4DIR)/lz4.h
57 MD2ROFF_FLAGS = --roff --warnings --manual="User Commands" --organization="lz4 $(LZ4_VERSION)"
71 default: lz4-release
73 all: lz4 lz4
    [all...]
  /external/lz4/tests/
test-lz4-versions.py 2 """Test LZ4 interoperability between versions"""
18 repo_url = 'https://github.com/lz4/lz4.git'
57 base_dir = os.getcwd() + '/..' # /path/to/lz4
58 tmp_dir = base_dir + '/' + tmp_dir_name # /path/to/lz4/tests/versionsTest
59 clone_dir = tmp_dir + '/' + 'lz4' # /path/to/lz4/tests/versionsTest/lz4
60 programs_dir = base_dir + '/programs' # /path/to/lz4/programs
78 dst_lz4c = '{}/lz4c.{}' .format(tmp_dir, tag) # /path/to/lz4/test/lz4test/lz4c.<TAG
    [all...]
Makefile 2 # LZ4 programs - Makefile
22 # - LZ4 homepage : http://www.lz4.org
23 # - LZ4 source repository : https://github.com/lz4/lz4
25 # fuzzer : Test tool, to check lz4 integrity on target platform
27 # fullbench : Precisely measure speed for each LZ4 function variant
55 LZ4 := $(PRGDIR)/lz4$(EXT
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
grUtils.py 3 import lz4
5 lz4 = None variable
7 import lz4.block
9 #old scheme for VERSION < 0.9 otherwise use lz4.block
17 elif scheme == 1 and lz4:
18 res = lz4.block.decompress(struct.pack("<L", size) + data[8:])
31 elif scheme == 1 and lz4:
32 res = lz4.block.compress(data, mode='high_compression', compression=16, store_size=False)
  /external/lz4/
Makefile 2 # LZ4 - Makefile
29 # - LZ4 source repository : https://github.com/lz4/lz4
30 # - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c
50 default: lib-release lz4-release
56 allmost: lib lz4 examples
63 .PHONY: lz4 lz4-release
64 lz4 : liblz4.
    [all...]
  /external/lz4/contrib/djgpp/
Makefile 10 LIBVER_MAJOR=$(shell sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lib/lz4.h)
11 LIBVER_MINOR=$(shell sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lib/lz4.h)
12 LIBVER_PATCH=$(shell sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lib/lz4.h)
29 EXE = lz4.exe
30 LNK = lz4
32 LSRC = lib/lz4.c lib/lz4hc.c lib/lz4frame.c lib/xxhash.c
  /external/lz4/examples/
Makefile 2 # LZ4 examples - Makefile
22 # - LZ4 source repository : https://github.com/Cyan4973/lz4
23 # - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c
26 # example programs, using (mostly) LZ4 streaming library,
37 LZ4 = ../programs/lz4
55 $(LZ4DIR)/liblz4.a: $(LZ4DIR)/lz4.c $(LZ4DIR)/lz4hc.c $(LZ4DIR)/lz4frame.c $(LZ4DIR)/lz4.h $(LZ4DIR)/lz4hc.h $(LZ4DIR)/lz4frame.h $(LZ4DIR)/lz4frame_static.h
85 $(LZ4)
    [all...]
  /external/lz4/lib/
Makefile 2 # LZ4 library - Makefile
31 # - LZ4 source repository : https://github.com/Cyan4973/lz4
32 # - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c
36 LIBVER_MAJOR_SCRIPT:=`sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h`
37 LIBVER_MINOR_SCRIPT:=`sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h`
38 LIBVER_PATCH_SCRIPT:=`sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./lz4.h`
184 $(Q)$(INSTALL_DATA) lz4.h $(DESTDIR)$(includedir)/lz4.h
187 @echo lz4 libraries installe
    [all...]
  /device/google/wahoo/lisa/
update-script.sh 12 cp $LOCAL_KERNEL_HOME/arch/arm64/boot/Image.lz4-dtb arch/arm64/boot/dtbo.img `find . -name '*.ko'` $ANDROID_BUILD_TOP/device/google/wahoo-kernel
  /external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/lz4/
BlockLZ4CompressorInputStreamTest.java 19 package org.apache.commons.compress.compressors.lz4;
XXHash32Test.java 19 package org.apache.commons.compress.compressors.lz4;
FactoryTest.java 19 package org.apache.commons.compress.compressors.lz4;
48 final File outputSz = new File(dir, input.getName() + "." + format + ".lz4");
BlockLZ4CompressorRoundtripTest.java 19 package org.apache.commons.compress.compressors.lz4;
60 final File outputSz = new File(dir, input.getName() + ".block.lz4");
FramedLZ4CompressorRoundtripTest.java 19 package org.apache.commons.compress.compressors.lz4;
71 final File outputSz = new File(dir, input.getName() + ".framed.lz4");
BlockLZ4CompressorOutputStreamTest.java 19 package org.apache.commons.compress.compressors.lz4;
195 // in LZ4
  /build/make/target/product/
runtime_libart.mk 55 dalvik.vm.appimageformat=lz4
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lz4/
BlockLZ4CompressorInputStream.java 19 package org.apache.commons.compress.compressors.lz4;
28 * CompressorInputStream for the LZ4 block format.
30 * @see <a href="http://lz4.github.io/lz4/lz4_Block_format.html">LZ4 Block Format Description</a>
48 * Creates a new LZ4 input stream.
XXHash32.java 19 package org.apache.commons.compress.compressors.lz4;
FramedLZ4CompressorOutputStream.java 19 package org.apache.commons.compress.compressors.lz4;
29 * CompressorOutputStream for the LZ4 frame format.
33 * @see <a href="http://lz4.github.io/lz4/lz4_Frame_format.html">LZ4 Frame Format Description</a>
86 * Parameters of the LZ4 frame format.
97 * <p>This matches the defaults of the lz4 command line utility.</p>
102 * Sets up custom a custom block size for the LZ4 stream but
111 * Sets up custom a custom block size for the LZ4 stream but
124 * Sets up custom parameters for the LZ4 stream
    [all...]
FramedLZ4CompressorInputStream.java 19 package org.apache.commons.compress.compressors.lz4;
34 * CompressorInputStream for the LZ4 frame format.
38 * @see <a href="http://lz4.github.io/lz4/lz4_Frame_format.html">LZ4 Frame Format Description</a>
95 * using the LZ4 frame format and stops after decompressing the
106 * using the LZ4 frame format.
109 * of the input; if false, stop after the first LZ4 frame
179 String garbageMessage = firstFrame ? "Not a LZ4 frame stream" : "LZ4 frame stream followed by garbage"
    [all...]
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/
CompressorStreamFactory.java 43 import org.apache.commons.compress.compressors.lz4.BlockLZ4CompressorInputStream;
44 import org.apache.commons.compress.compressors.lz4.BlockLZ4CompressorOutputStream;
45 import org.apache.commons.compress.compressors.lz4.FramedLZ4CompressorInputStream;
46 import org.apache.commons.compress.compressors.lz4.FramedLZ4CompressorOutputStream;
189 * Constant (value {@value}) used to identify the block LZ4
194 public static final String LZ4_BLOCK = "lz4-block";
197 * Constant (value {@value}) used to identify the frame LZ4
202 public static final String LZ4_FRAMED = "lz4-framed";
  /external/squashfs-tools/squashfs-tools/
lz4_wrapper.c 21 * Support for LZ4 compression http://fastcompression.blogspot.com/p/lz4.html
27 #include <lz4.h>
72 * Currently LZ4 always returns a comp_opts structure, with
122 fprintf(stderr, "lz4: unknown LZ4 version\n");
133 fprintf(stderr, "lz4: unknown LZ4 flags\n");
140 fprintf(stderr, "lz4: error reading stored compressor options from "
150 * understood by this version of LZ4
    [all...]
  /art/runtime/
image.cc 19 #include <lz4.h>
164 // LZ4HC and LZ4 have same internal format, both use LZ4_decompress.

Completed in 568 milliseconds

1 2