Home
last modified time | relevance | path

Searched refs:siphash24 (Results 1 – 18 of 18) sorted by relevance

/third_party/eudev/src/shared/
Dsiphash24.h7 void siphash24(uint8_t out[8], const void *in, size_t inlen, const uint8_t k[16]);
Dsiphash24.c56 void siphash24(uint8_t out[8], const void *_in, size_t inlen, const uint8_t k[16]) in siphash24() function
Dhashmap.c278 siphash24((uint8_t*) &u, p, strlen(p), hash_key); in string_hash_func()
293 siphash24((uint8_t*) &u, &p, sizeof(p), hash_key); in trivial_hash_func()
308 siphash24((uint8_t*) &u, p, sizeof(uint64_t), hash_key); in uint64_hash_func()
327 siphash24((uint8_t*) &u, p, sizeof(dev_t), hash_key); in devt_hash_func()
/third_party/python/Python/
Dpyhash.c375 siphash24(uint64_t k0, uint64_t k1, const void *src, Py_ssize_t src_sz) { in siphash24() function
426 return siphash24(key, 0, src, src_sz); in _Py_KeyedHash()
433 return (Py_hash_t)siphash24( in pysiphash()
/third_party/python/Modules/expat/
Dsiphash.h271 siphash24(const void *src, size_t len, const struct sipkey *key) { in siphash24() function
368 if (siphash24(in, i, &k) != SIP_U8TO64_LE(vectors[i])) in sip24_valid()
/third_party/skia/third_party/externals/expat/expat/lib/
Dsiphash.h271 siphash24(const void *src, size_t len, const struct sipkey *key) { in siphash24() function
368 if (siphash24(in, i, &k) != SIP_U8TO64_LE(vectors[i])) in sip24_valid()
/third_party/expat/lib/
Dsiphash.h271 siphash24(const void *src, size_t len, const struct sipkey *key) { in siphash24() function
368 if (siphash24(in, i, &k) != SIP_U8TO64_LE(vectors[i])) in sip24_valid()
/third_party/eudev/
DBUILD.gn63 "src/shared/siphash24.c",
/third_party/python/Doc/using/
Dconfigure.rst416 .. cmdoption:: --with-hash-algorithm=[fnv|siphash24]
420 * ``siphash24`` (default).
/third_party/python/Misc/NEWS.d/
D3.7.0b5.rst58 Fix unaligned accesses in siphash24(). Patch by Rolf Eike Beer.
D3.6.6rc1.rst56 Fix unaligned accesses in siphash24(). Patch by Rolf Eike Beer.
D3.8.0a1.rst1303 Fix unaligned accesses in siphash24(). Patch by Rolf Eike Beer.
/third_party/python/Doc/
Dlicense.rst618 Samuel Neves (supercop/crypto_auth/siphash24/little)
619 djb (supercop/crypto_auth/siphash24/little2)
620 Jean-Philippe Aumasson (https://131002.net/siphash/siphash24.c)
/third_party/python/
Dconfigure.ac3024 AS_HELP_STRING([--with-hash-algorithm=@<:@fnv|siphash24@:>@],
3029 siphash24)
Dconfigure10495 siphash24)
/third_party/skia/third_party/externals/expat/expat/tests/
Druntests.c529 if (siphash24(message, len, &key) != expected) in START_TEST()
/third_party/expat/tests/
Druntests.c529 if (siphash24(message, len, &key) != expected) in START_TEST()
/third_party/python/Misc/
DHISTORY2358 - Issue #20162: Fix an alignment issue in the siphash24() hash function which