| /external/angle/src/common/third_party/xxhash/ | 
| D | README.md | 1 xxHash - Extremely fast hash algorithm4 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 …]
 
 | 
| D | xxhash.h | 2    xxHash - Extremely Fast Hash algorithm32    - 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 …]
 
 | 
| D | xxhash_fuzzer.cpp | 6 // xxHash Fuzzer test:7 //      Integration with Chromium's libfuzzer for xxHash.
 13 #include "xxhash.h"
 
 | 
| /external/coreboot/util/cbfstool/lz4/lib/ | 
| D | xxhash.h | 2    xxHash - Extremely Fast Hash algorithm32    - 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 If you need to include xxHash into your library,
 87 but wish to avoid xxHash symbols to be present on your library interface
 88 in an effort to avoid potential name collision if another library also includes xxHash,
 90 you can use XXH_NAMESPACE, which will automatically prefix any symbol from xxHash
 94 it can still call xxHash functions using their regular name.
 [all …]
 
 | 
| D | README.md | 10 …at]. In order to work properly, lz4frame needs lz4 and lz4hc, and also **xxhash**, which provides …11 …xxhash symbols into a local namespace. This is what `liblz4` does, to avoid symbol duplication in …
 
 | 
| /external/grpc-grpc/third_party/ | 
| D | README.md | 142 ### Updating third_party/xxhash144 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/lz4/lib/ | 
| D | xxhash.h | 2    xxHash - Extremely Fast Hash algorithm32    - 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/vulkan-validation-layers/layers/ | 
| D | xxhash.h | 2    xxHash - Extremely Fast Hash algorithm32    - 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/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/ | 
| D | README.md | 150 ### Updating third_party/xxhash152 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/zstd/lib/common/ | 
| D | xxhash.c | 2  * xxHash - Extremely Fast Hash algorithm12  * xxhash.c instantiates functions defined in xxhash.h
 18 #include "xxhash.h"
 
 | 
| /external/coreboot/src/include/ | 
| D | xxhash.h | 4  * xxHash - Extremely Fast Hash algorithm8  * - xxHash homepage: http://cyan4973.github.io/xxHash/
 9  * - xxHash source repository: https://github.com/Cyan4973/xxHash
 13  * Notice extracted from xxHash homepage:
 15  * xxHash is an extremely fast Hash algorithm, running at RAM speed limits.
 22  * xxHash          5.4 GB/s     10
 
 | 
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ | 
| D | xxhash.cpp | 2 *  xxHash - Fast Hash algorithm31 *  - 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/ | 
| D | xxhash.cpp | 2 *  xxHash - Fast Hash algorithm31 *  - 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/ | 
| D | Makefile | 26 xxhash.o: $(LIBDIR)/common/xxhash.c $(LIBDIR)/common/xxhash.h32 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/erofs-utils/lib/ | 
| D | xxhash.c | 3  * 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
 47 #include "xxhash.h"
 
 | 
| /external/grpc-grpc/src/core/lib/gprpp/ | 
| D | xxhash_inline.h | 22 // This header is a simple wrapper around the third-party xxhash24 // that includes xxhash.h.  That definition confuses clang-format's
 27 #include "xxhash.h"
 
 | 
| /external/libdav1d/tools/ | 
| D | meson.build | 42 # hacky check for xxhash.h to allow copying it to tools/output45     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/zstd/contrib/linux-kernel/test/include/linux/ | 
| D | xxhash.h | 2  * xxHash - Extremely Fast Hash algorithm37  * - 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/coreboot/util/cbfstool/lz4/ | 
| D | NEWS | 11 Changed: xxhash symbols are modified (namespace emulation) within liblz473 Updated : xxHash to r38
 86 Updated : xxHash, to r36
 100 Updated : xxHash to r35
 133 xxhash : updated to r34
 153 xxHash : updated to r33
 
 | 
| /external/rust/android-crates-io/crates/twox-hash/ | 
| D | CHANGELOG.md | 33 release of the reference C xxHash implementation.62   reference C xxHash library version 0.8.2, which includes a stable
 71 - The deprecated type aliases `XxHash` and `RandomXxHashBuilder` have
 88   is for **cryptographic** hash functions and xxHash is
 
 | 
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ | 
| D | xxhash.h | 2    xxHash - Extremely Fast Hash algorithm32    - xxHash source repository : https://github.com/Cyan4973/xxHash
 
 | 
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/ | 
| D | xxhash.h | 2    xxHash - Extremely Fast Hash algorithm32    - xxHash source repository : https://github.com/Cyan4973/xxHash
 
 | 
| /external/zstd/lib/ | 
| D | BUCK | 179     name='xxhash',183         ('common', 'xxhash.h'),
 185     srcs=['common/xxhash.c'],
 229         ':xxhash',
 
 | 
| /external/zstd/build/single_file_libs/ | 
| D | zstddeclib-in.c | 25  * Note: MEM_MODULE stops xxhash redefining BYTE, U16, etc., which are also28  * Note: the undefs for xxHash allow Zstd's implementation to coincide with
 29  * standalone xxHash usage (with global defines).
 
 | 
| /external/zstd/contrib/seqBench/ | 
| D | Makefile | 31 seqBench: util.o timefn.o benchfn.o datagen.o xxhash.o seqBench.c $(LIBZSTD)51 xxhash.o : $(LIBDIR)/common/xxhash.c
 
 |