Home
last modified time | relevance | path

Searched full:xxhash (Results 1 – 25 of 256) sorted by relevance

1234567891011

/external/angle/src/common/third_party/xxhash/
DREADME.md1 xxHash - Extremely fast hash algorithm
4 xxHash is an Extremely fast Hash algorithm, running at RAM speed limits.
11 …uild Status](https://travis-ci.org/Cyan4973/xxHash.svg?branch=master)](https://travis-ci.org/Cyan4…
12 …[Build Status](https://travis-ci.org/Cyan4973/xxHash.svg?branch=dev)](https://travis-ci.org/Cyan49…
25 | [xxHash] | 5.4 GB/s | 10 | Y.C. |
35 [xxHash]: http://www.xxhash.com
60 The library files `xxhash.c` and `xxhash.h` are BSD licensed.
67 they modify xxhash behavior. They are all disabled by default.
69 - `XXH_INLINE_ALL` : Make all functions `inline`, with bodies directly included within `xxhash.h`.
70 There is no need for an `xxhash.o` module in this case.
[all …]
Dxxhash.h2 xxHash - Extremely Fast Hash algorithm
32 - xxHash source repository : https://github.com/Cyan4973/xxHash
35 /* Notice extracted from xxHash homepage :
37 xxHash is an extremely fast Hash algorithm, running at RAM speed limits.
43 xxHash 5.4 GB/s 10
88 * This is useful to include xxhash functions in `static` mode
93 * #include "xxhash.h"
94 * `xxhash.c` is automatically included.
118 * If you want to include _and expose_ xxHash functions from within your own library,
119 * but also want to avoid symbol collisions with other libraries which may also include xxHash,
[all …]
Dxxhash_fuzzer.cpp6 // xxHash Fuzzer test:
7 // Integration with Chromium's libfuzzer for xxHash.
13 #include "xxhash.h"
/external/grpc-grpc/third_party/
DREADME.md142 ### Updating third_party/xxhash
144 TODO(https://github.com/Cyan4973/xxHash/issues/548): revisit LICENSE
147 The upstream xxhash repository contains a bunch of files that we don't want, so
151 git remote add xxhash https://github.com/Cyan4973/xxHash.git
152 git fetch xxhash
153 git show xxhash/dev:xxhash.h > third_party/xxhash/xxhash.h
154 git show xxhash/dev:LICENSE | sed -nE '/^-+$/q;p' > third_party/xxhash/LICENSE
/external/vulkan-validation-layers/layers/
Dxxhash.h2 xxHash - Extremely Fast Hash algorithm
32 - xxHash source repository : https://github.com/Cyan4973/xxHash
35 /* Notice extracted from xxHash homepage :
37 xxHash is an extremely fast Hash algorithm, running at RAM speed limits.
43 xxHash 5.4 GB/s 10
86 * This is useful to include xxhash functions in `static` mode
90 * #include "xxhash.h"
91 * `xxhash.c` is automatically included.
113 If you want to include _and expose_ xxHash functions from within your own library,
114 but also want to avoid symbol collisions with other libraries which may also include xxHash,
[all …]
/external/lz4/lib/
Dxxhash.h2 xxHash - Extremely Fast Hash algorithm
32 - xxHash source repository : https://github.com/Cyan4973/xxHash
35 /* Notice extracted from xxHash homepage :
37 xxHash is an extremely fast Hash algorithm, running at RAM speed limits.
43 xxHash 5.4 GB/s 10
86 * This is useful to include xxhash functions in `static` mode
91 * #include "xxhash.h"
92 * `xxhash.c` is automatically included.
115 * If you want to include _and expose_ xxHash functions from within your own library,
116 * but also want to avoid symbol collisions with other libraries which may also include xxHash,
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/
DREADME.md150 ### Updating third_party/xxhash
152 TODO(https://github.com/Cyan4973/xxHash/issues/548): revisit LICENSE
155 The upstream xxhash repository contains a bunch of files that we don't want, so
159 git remote add xxhash https://github.com/Cyan4973/xxHash.git
160 git fetch xxhash
161 git show xxhash/dev:xxhash.h > third_party/xxhash/xxhash.h
162 git show xxhash/dev:LICENSE | sed -nE '/^-+$/q;p' > third_party/xxhash/LICENSE
/external/erofs-utils/lib/
Dxxhash.c3 * The xxhash is copied from the linux kernel at:
4 * https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/lib/xxhash.c
8 * xxHash - Extremely Fast Hash algorithm
43 * - xxHash homepage: https://cyan4973.github.io/xxHash/
44 * - xxHash source repository: https://github.com/Cyan4973/xxHash
48 #include "erofs/xxhash.h"
/external/zstd/lib/common/
Dxxhash.c2 * xxHash - Extremely Fast Hash algorithm
12 * xxhash.c instantiates functions defined in xxhash.h
18 #include "xxhash.h"
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
Dxxhash.cpp2 * xxHash - Fast Hash algorithm
31 * - xxHash homepage: http://www.xxhash.com
32 * - xxHash source repository : https://github.com/Cyan4973/xxHash
38 #include "llvm/Support/xxhash.h"
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/
Dxxhash.cpp2 * xxHash - Fast Hash algorithm
31 * - xxHash homepage: http://www.xxhash.com
32 * - xxHash source repository : https://github.com/Cyan4973/xxHash
38 #include "llvm/Support/xxhash.h"
/external/zstd/tests/regression/
DMakefile26 xxhash.o: $(LIBDIR)/common/xxhash.c $(LIBDIR)/common/xxhash.h
32 data.o: data.c data.h $(PROGDIR)/util.h $(LIBDIR)/common/xxhash.h
54 test: test.o data.o config.o util.o method.o result.o xxhash.o libzstd.a
/external/zstd/contrib/linux-kernel/test/include/linux/
Dxxhash.h2 * xxHash - Extremely Fast Hash algorithm
37 * - xxHash homepage: https://cyan4973.github.io/xxHash/
38 * - xxHash source repository: https://github.com/Cyan4973/xxHash
42 * Notice extracted from xxHash homepage:
44 * xxHash is an extremely fast Hash algorithm, running at RAM speed limits.
51 * xxHash 5.4 GB/s 10
112 * xxhash() - calculate wordsize hash of the input with a given seed
124 static inline unsigned long xxhash(const void *input, size_t length, in xxhash() function
260 * xxHash - Extremely Fast Hash algorithm
295 * - xxHash homepage: https://cyan4973.github.io/xxHash/
[all …]
/external/rust/crates/twox-hash/
DREADME.md3 A Rust implementation of the [XXHash] algorithm.
9 [XXHash]: https://github.com/Cyan4973/xxHash
40 | Bytes | SipHasher (MB/s) | XXHash (MB/s) | Ratio |
52 | Bytes | [FnvHasher][fnv] (MB/s) | XXHash (MB/s) | Ratio |
/external/grpc-grpc/src/core/lib/gprpp/
Dxxhash_inline.h22 // This header is a simple wrapper around the third-party xxhash
24 // that includes xxhash.h. That definition confuses clang-format's
27 #include "xxhash.h"
/external/libdav1d/tools/
Dmeson.build42 # hacky check for xxhash.h to allow copying it to tools/output
45 if cc.has_header_symbol('xxhash.h', 'XXH3_createState', args : xxhash_include)
46 dav1d_output_sources += 'output/xxhash.c'
50 error( 'C symbol XXH3_createState not found in header xxhash.h')
/external/rust/crates/twox-hash/src/
Dlib.rs1 //! A Rust implementation of the [XXHash] algorithm.
3 //! [XXHash]: https://github.com/Cyan4973/xxHash
68 pub type XxHash = XxHash64; typedef
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/
Dxxhash.h2 xxHash - Extremely Fast Hash algorithm
32 - xxHash source repository : https://github.com/Cyan4973/xxHash
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
Dxxhash.h2 xxHash - Extremely Fast Hash algorithm
32 - xxHash source repository : https://github.com/Cyan4973/xxHash
/external/zstd/lib/
DBUCK179 name='xxhash',
183 ('common', 'xxhash.h'),
185 srcs=['common/xxhash.c'],
229 ':xxhash',
/external/zstd/build/single_file_libs/
Dzstddeclib-in.c25 * Note: MEM_MODULE stops xxhash redefining BYTE, U16, etc., which are also
28 * Note: the undefs for xxHash allow Zstd's implementation to coincide with
29 * standalone xxHash usage (with global defines).
/external/zstd/contrib/freestanding_lib/
Dfreestanding.py36 "common/xxhash.c",
37 "common/xxhash.h",
471 self._log(f"\tSkipping xxhash file: {lib_path}")
710 …parser.add_argument("--xxhash", default=None, help="Alternate external xxhash include e.g. --xxhas…
744 if args.xxhash is not None:
746 args.rewritten_includes.append(('"(\\.\\./common/)?xxhash.h"', args.xxhash))
750 raise RuntimeError("--xxh64-prefix may only be used with --xxhash provided")
754 raise RuntimeError("--xxh64-state may only be used with --xxhash provided")
/external/mesa3d/src/util/
Dxxhash.h2 xxHash - Extremely Fast Hash algorithm
32 - xxHash source repository : https://github.com/Cyan4973/xxHash
35 /* Notice extracted from xxHash homepage :
37 xxHash is an extremely fast Hash algorithm, running at RAM speed limits.
43 xxHash 5.4 GB/s 10
95 * This build macro includes xxhash functions in `static` mode
99 * See https://fastcompression.blogspot.com/2018/03/xxhash-for-small-keys-impressive-power.html .
102 * #include "xxhash.h"
103 * `xxhash.c` is automatically included.
134 * If you want to include _and expose_ xxHash functions from within your own library,
[all …]
/external/virglrenderer/src/mesa/util/
Dxxhash.h2 xxHash - Extremely Fast Hash algorithm
32 - xxHash source repository : https://github.com/Cyan4973/xxHash
35 /* Notice extracted from xxHash homepage :
37 xxHash is an extremely fast Hash algorithm, running at RAM speed limits.
43 xxHash 5.4 GB/s 10
95 * This build macro includes xxhash functions in `static` mode
99 * See https://fastcompression.blogspot.com/2018/03/xxhash-for-small-keys-impressive-power.html .
102 * #include "xxhash.h"
103 * `xxhash.c` is automatically included.
134 * If you want to include _and expose_ xxHash functions from within your own library,
[all …]
/external/zstd/contrib/largeNbDicts/
DMakefile31 largeNbDicts: util.o timefn.o benchfn.o datagen.o xxhash.o largeNbDicts.c $(LIBZSTD)
51 xxhash.o : $(LIBDIR)/common/xxhash.c

1234567891011