Lines Matching +full:fast +full:- +full:speed
2 * xxHash - Extremely Fast Hash algorithm
4 * Copyright (c) 2012-2020, Yann Collet, Facebook, Inc.
7 * - xxHash source repository : https://github.com/Cyan4973/xxHash
9 * This source code is licensed under both the BSD-style license (found in the
12 * You may select, at your option, one of the above-listed licenses.
17 xxHash is an extremely fast Hash algorithm, running at RAM speed limits.
22 Name Speed Q.Score Author
33 MD5-32 0.33 GB/s 10 Ronald L. Rivest
34 SHA1-32 0.28 GB/s 10
40 A 64-bits version, named XXH64, is available since r35.
41 It offers much better speed, but for 64-bits applications only.
42 Name Speed on 64 bits Speed on 32 bits
148 Calculate the 32-bits hash of sequence "length" bytes stored at memory address "input".
149 The memory between input & input+length must be valid (allocated and read-accessible).
151 Speed on Core 2 Duo @ 3 GHz (single thread, SMHasher benchmark) : 5.4 GB/s
153 Calculate the 64-bits hash of sequence of length "len" stored at memory address "input".
155 This function runs 2x faster on 64-bits systems, but slower on 32-bits systems (see benchmark).
186 Note that, for small input, they are slower than single-call functions, due to state management.
198 This function returns the nn-bits hash as an int or long long.
222 * The canonical representation uses human-readable write convention, aka big-endian (large digits …