/lz4-3.4.0-2.7.6/tests/ |
D | checkTag.c | 2 checkTag.c - Version validation tool for LZ4 9 the Free Software Foundation; either version 2 of the License, or 10 (at your option) any later version. 29 * The tag is then compared to LZ4 version number. 32 * Example : tag v1.8.1.2 is compatible with version 1.8.1 33 * When tag and version are not compatible, program exits with error code 1. 69 printf("Version : %s \n", LZ4_VERSION_STRING); in main() 73 printf("OK : tag is compatible with lz4 version \n"); in main()
|
D | COPYING | 2 Version 2, June 1991 239 be similar in spirit to the present version, but may differ in detail to 242 Each version is given a distinguishing version number. If the Program 243 specifies a version number of this License which applies to it and "any 244 later version", you have the option of following the terms and conditions 245 either of that version or of any later version published by the Free 246 Software Foundation. If the Program does not specify a version number of 247 this License, you may choose any version ever published by the Free Software 298 the Free Software Foundation; either version 2 of the License, or 299 (at your option) any later version. [all …]
|
/lz4-3.4.0-2.7.6/programs/ |
D | COPYING | 2 Version 2, June 1991 239 be similar in spirit to the present version, but may differ in detail to 242 Each version is given a distinguishing version number. If the Program 243 specifies a version number of this License which applies to it and "any 244 later version", you have the option of following the terms and conditions 245 either of that version or of any later version published by the Free 246 Software Foundation. If the Program does not specify a version number of 247 this License, you may choose any version ever published by the Free Software 298 the Free Software Foundation; either version 2 of the License, or 299 (at your option) any later version. [all …]
|
D | bench.h | 7 the Free Software Foundation; either version 2 of the License, or 8 (at your option) any later version.
|
D | datagen.h | 9 the Free Software Foundation; either version 2 of the License, or 10 (at your option) any later version.
|
D | platform.h | 7 the Free Software Foundation; either version 2 of the License, or 8 (at your option) any later version. 76 * Detect POSIX version
|
/lz4-3.4.0-2.7.6/examples/ |
D | COPYING | 2 Version 2, June 1991 239 be similar in spirit to the present version, but may differ in detail to 242 Each version is given a distinguishing version number. If the Program 243 specifies a version number of this License which applies to it and "any 244 later version", you have the option of following the terms and conditions 245 either of that version or of any later version published by the Free 246 Software Foundation. If the Program does not specify a version number of 247 this License, you may choose any version ever published by the Free Software 298 the Free Software Foundation; either version 2 of the License, or 299 (at your option) any later version. [all …]
|
D | printVersion.c | 1 // LZ4 trivial example : print Library version number 11 printf("Hello World ! LZ4 Library version = %d\n", LZ4_versionNumber()); in main()
|
D | Makefile | 9 # the Free Software Foundation; either version 2 of the License, or 10 # (at your option) any later version. 80 @echo "\n=== Print Version ==="
|
/lz4-3.4.0-2.7.6/lib/ |
D | liblz4.pc.in | 12 Version: @VERSION@
|
D | xxhash.h | 60 A 64-bit version, named XXH64, is available since r35. 106 /* this version may generate warnings for unused static functions */ 150 * Version 250 … They may change in future versions, becoming incompatible with a different version of the library. 273 uint32_t reserved; /* never read nor write, might be removed in a future version */ 284 uint32_t reserved[2]; /* never read nor write, might be removed in a future version */ 298 unsigned reserved; /* never read nor write, might be removed in a future version */ 310 unsigned reserved[2]; /* never read nor write, might be removed in a future version */
|
D | liblz4-dll.rc.in | 3 // DLL version information.
|
/lz4-3.4.0-2.7.6/contrib/djgpp/ |
D | Makefile | 7 # Version numbers 8 VERSION ?= 129 macro 9 RELEASE ?= r$(VERSION) 98 @echo "VERSION="$(VERSION)
|
/lz4-3.4.0-2.7.6/ |
D | NEWS | 33 cli: --version outputs to stdout 110 doc : markdown version of man page, by Takayuki Matsuoka (#279) 123 Changed : moved to versioning; package, cli and library have same version number 153 New : cross-version test, by Takayuki Matsuoka 231 Updated : Makefile : synchronize library version number with lz4.h, thanks to Takayuki Matsuoka 241 New : LZ4 Streaming API (Fast version), special thanks to Takayuki Matsuoka 274 Version number into lz4.h (suggested by Francesc Alted) 287 cmake : improved version by Mika Attila, building programs and libraries (issue 100) 293 Makefile : can specify version number from makefile
|
/lz4-3.4.0-2.7.6/build/cmake/ |
D | CMakeLists.txt | 18 # Parse version information 33 VERSION ${LZ4_VERSION_STRING} 37 cmake_minimum_required (VERSION 2.8.6) 109 VERSION "${LZ4_VERSION_STRING}") 234 set(VERSION ${LZ4_VERSION_STRING}) variable
|
/lz4-3.4.0-2.7.6/contrib/snap/ |
D | README.md | 15 * ensure snap.snapcraft.yaml is up-to-date e.g. with version info 27 * all installed copies of lz4 will be automatically updated to your new version
|
/lz4-3.4.0-2.7.6/doc/ |
D | lz4_Frame_format.md | 17 ### Version subsection in LZ4 Frame Format Description 137 |FieldName|Version|B.Indep|B.Checksum|C.Size|C.Checksum|*Reserved*|DictID| 151 Any other value cannot be decoded by this version of the specification. 152 Other version numbers will use different flag layouts. 200 A decoder conformant with the current version of the spec 206 Reserved bit might be used in a future version of the specification, 208 When this happens, a decoder respecting the current specification version 398 Version changes
|
D | lz4frame_manual.html | 136 <pre><b>LZ4F_errorCode_t LZ4F_createCompressionContext(LZ4F_cctx** cctxPtr, unsigned version); 139 This is achieved using LZ4F_createCompressionContext(), which takes as argument a version. 140 …The version provided MUST be LZ4F_VERSION. It is intended to track potential version mismatch, not… 227 <pre><b>LZ4F_errorCode_t LZ4F_createDecompressionContext(LZ4F_dctx** dctxPtr, unsigned version); 230 The version provided MUST be LZ4F_VERSION.
|
/lz4-3.4.0-2.7.6/contrib/meson/meson/ |
D | GetLz4LibraryVersion.py | 26 raise Exception("Unable to find version string.") 31 parser = argparse.ArgumentParser(description='Print lz4 version from lib/lz4.h')
|
/lz4-3.4.0-2.7.6/contrib/meson/meson/lib/ |
D | meson.build | 39 version: lz4_libversion) 48 version: lz4_libversion,
|
/lz4-3.4.0-2.7.6/lib/dll/example/ |
D | Makefile | 9 # the Free Software Foundation; either version 2 of the License, or 10 # (at your option) any later version.
|
/lz4-3.4.0-2.7.6/ossfuzz/ |
D | Makefile | 8 # the Free Software Foundation; either version 2 of the License, or 9 # (at your option) any later version.
|
/lz4-3.4.0-2.7.6/contrib/gen_manual/ |
D | gen_manual.cpp | 110 string line, version; in main() local 121 version = string(argv[1]) + " Manual"; in main() 236 …\"Content-Type\" content=\"text/html; charset=ISO-8859-1\">\n<title>" << version << "</title>\n</h… in main() 237 ostream << "<h1>" << version << "</h1>\n"; in main()
|
/lz4-3.4.0-2.7.6/contrib/debian/ |
D | changelog | 3 * Changed : moved to versioning; package, cli and library have same version number
|
D | control | 9 Standards-Version: 3.8.0
|