Home
last modified time | relevance | path

Searched refs:hash64 (Results 1 – 25 of 285) sorted by relevance

12345678910>>...12

/dports/lang/solidity/solidity_0.8.11/libyul/optimiser/
H A DBlockHasher.cpp56 hash64(compileTimeLiteralHash("Literal")); in operator ()()
57 hash64(_literal.value.hash()); in operator ()()
58 hash64(_literal.type.hash()); in operator ()()
78 hash64(it->second.id); in operator ()()
85 hash64(_funCall.arguments.size()); in operator ()()
107 hash64(_varDecl.variables.size()); in operator ()()
121 hash64(compileTimeLiteralHash("If")); in operator ()()
128 hash64(_switch.cases.size()); in operator ()()
160 hash64(compileTimeLiteralHash("Break")); in operator ()()
179 hash64(_block.statements.size()); in operator ()()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/gandiva/precompiled/
H A Dhash_test.cc75 gdv_int64 zero_hash = hash64(s8, 0); in TEST()
80 EXPECT_EQ(hash64(u8, 0), zero_hash); in TEST()
81 EXPECT_EQ(hash64(s16, 0), zero_hash); in TEST()
82 EXPECT_EQ(hash64(u16, 0), zero_hash); in TEST()
83 EXPECT_EQ(hash64(s32, 0), zero_hash); in TEST()
84 EXPECT_EQ(hash64(u32, 0), zero_hash); in TEST()
87 EXPECT_EQ(hash64(f32, 0), zero_hash); in TEST()
91 EXPECT_NE(hash64(s8, 1), zero_hash); in TEST()
94 EXPECT_EQ(hash64(s8, 1), hash64(s16, 1)); in TEST()
95 EXPECT_EQ(hash64(s8, 1), hash64(u32, 1)); in TEST()
[all …]
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/gandiva/precompiled/
H A Dhash_test.cc75 gdv_int64 zero_hash = hash64(s8, 0); in TEST()
80 EXPECT_EQ(hash64(u8, 0), zero_hash); in TEST()
81 EXPECT_EQ(hash64(s16, 0), zero_hash); in TEST()
82 EXPECT_EQ(hash64(u16, 0), zero_hash); in TEST()
83 EXPECT_EQ(hash64(s32, 0), zero_hash); in TEST()
84 EXPECT_EQ(hash64(u32, 0), zero_hash); in TEST()
87 EXPECT_EQ(hash64(f32, 0), zero_hash); in TEST()
91 EXPECT_NE(hash64(s8, 1), zero_hash); in TEST()
94 EXPECT_EQ(hash64(s8, 1), hash64(s16, 1)); in TEST()
95 EXPECT_EQ(hash64(s8, 1), hash64(u32, 1)); in TEST()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/gandiva/precompiled/
H A Dhash_test.cc75 gdv_int64 zero_hash = hash64(s8, 0); in TEST()
80 EXPECT_EQ(hash64(u8, 0), zero_hash); in TEST()
81 EXPECT_EQ(hash64(s16, 0), zero_hash); in TEST()
82 EXPECT_EQ(hash64(u16, 0), zero_hash); in TEST()
83 EXPECT_EQ(hash64(s32, 0), zero_hash); in TEST()
84 EXPECT_EQ(hash64(u32, 0), zero_hash); in TEST()
87 EXPECT_EQ(hash64(f32, 0), zero_hash); in TEST()
91 EXPECT_NE(hash64(s8, 1), zero_hash); in TEST()
94 EXPECT_EQ(hash64(s8, 1), hash64(s16, 1)); in TEST()
95 EXPECT_EQ(hash64(s8, 1), hash64(u32, 1)); in TEST()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/security/sandbox/chromium/base/
H A Dhash.cc55 uint64_t hash64 = (value1_64 << 32) | value2; in HashInts32() local
58 return static_cast<size_t>(hash64); in HashInts32()
63 hash64 = hash64 * odd_random + shift_random; in HashInts32()
65 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts32()
90 uint64_t hash64 = product1 + product2 + product3 + product4; in HashInts64() local
93 return static_cast<size_t>(hash64); in HashInts64()
98 hash64 = hash64 * odd_random + shift_random; in HashInts64()
100 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts64()
/dports/lang/spidermonkey60/firefox-60.9.0/security/sandbox/chromium/base/
H A Dhash.h46 uint64_t hash64 = (value1_64 << 32) | value2; in HashInts32() local
49 return static_cast<size_t>(hash64); in HashInts32()
54 hash64 = hash64 * odd_random + shift_random; in HashInts32()
56 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts32()
81 uint64_t hash64 = product1 + product2 + product3 + product4; in HashInts64() local
84 return static_cast<size_t>(hash64); in HashInts64()
89 hash64 = hash64 * odd_random + shift_random; in HashInts64()
91 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts64()
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/hash/
H A Dhash.cc45 uint64_t hash64 = (value1_64 << 32) | value2; in HashInts32Impl() local
48 return static_cast<size_t>(hash64); in HashInts32Impl()
53 hash64 = hash64 * odd_random + shift_random; in HashInts32Impl()
55 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts32Impl()
80 uint64_t hash64 = product1 + product2 + product3 + product4; in HashInts64Impl() local
83 return static_cast<size_t>(hash64); in HashInts64Impl()
88 hash64 = hash64 * odd_random + shift_random; in HashInts64Impl()
90 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts64Impl()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/base/hash/
H A Dhash.cc43 uint64_t hash64 = (value1_64 << 32) | value2; in HashInts32Impl() local
46 return static_cast<size_t>(hash64); in HashInts32Impl()
51 hash64 = hash64 * odd_random + shift_random; in HashInts32Impl()
53 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts32Impl()
78 uint64_t hash64 = product1 + product2 + product3 + product4; in HashInts64Impl() local
81 return static_cast<size_t>(hash64); in HashInts64Impl()
86 hash64 = hash64 * odd_random + shift_random; in HashInts64Impl()
88 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts64Impl()
/dports/www/firefox-esr/firefox-91.8.0/security/sandbox/chromium/base/hash/
H A Dhash.cc43 uint64_t hash64 = (value1_64 << 32) | value2; in HashInts32Impl() local
46 return static_cast<size_t>(hash64); in HashInts32Impl()
51 hash64 = hash64 * odd_random + shift_random; in HashInts32Impl()
53 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts32Impl()
78 uint64_t hash64 = product1 + product2 + product3 + product4; in HashInts64Impl() local
81 return static_cast<size_t>(hash64); in HashInts64Impl()
86 hash64 = hash64 * odd_random + shift_random; in HashInts64Impl()
88 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts64Impl()
/dports/www/firefox/firefox-99.0/security/sandbox/chromium/base/hash/
H A Dhash.cc43 uint64_t hash64 = (value1_64 << 32) | value2; in HashInts32Impl() local
46 return static_cast<size_t>(hash64); in HashInts32Impl()
51 hash64 = hash64 * odd_random + shift_random; in HashInts32Impl()
53 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts32Impl()
78 uint64_t hash64 = product1 + product2 + product3 + product4; in HashInts64Impl() local
81 return static_cast<size_t>(hash64); in HashInts64Impl()
86 hash64 = hash64 * odd_random + shift_random; in HashInts64Impl()
88 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts64Impl()
/dports/mail/thunderbird/thunderbird-91.8.0/security/sandbox/chromium/base/hash/
H A Dhash.cc43 uint64_t hash64 = (value1_64 << 32) | value2; in HashInts32Impl() local
46 return static_cast<size_t>(hash64); in HashInts32Impl()
51 hash64 = hash64 * odd_random + shift_random; in HashInts32Impl()
53 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts32Impl()
78 uint64_t hash64 = product1 + product2 + product3 + product4; in HashInts64Impl() local
81 return static_cast<size_t>(hash64); in HashInts64Impl()
86 hash64 = hash64 * odd_random + shift_random; in HashInts64Impl()
88 static_cast<size_t>(hash64 >> (8 * (sizeof(uint64_t) - sizeof(size_t)))); in HashInts64Impl()
/dports/databases/percona56-server/percona-server-5.6.51-91.0/plugin/percona-udf/
H A Dfnv_udf.cc132 ulonglong hash64(const void *buf, size_t len, ulonglong hval);
139 ulonglong hash64(const void *buf, size_t len, ulonglong hval) { in hash64() function
180 = hash64((const void*) args->args[i], args->lengths[i], result); in fnv_64()
187 = hash64((const void*)&real_val, sizeof(double), result); in fnv_64()
194 result = hash64((const void*)&int_val, sizeof(ulonglong), result); in fnv_64()
203 = hash64((const void*)&null_default, sizeof(null_default), result); in fnv_64()
/dports/databases/percona56-client/percona-server-5.6.51-91.0/plugin/percona-udf/
H A Dfnv_udf.cc132 ulonglong hash64(const void *buf, size_t len, ulonglong hval);
139 ulonglong hash64(const void *buf, size_t len, ulonglong hval) { in hash64() function
180 = hash64((const void*) args->args[i], args->lengths[i], result); in fnv_64()
187 = hash64((const void*)&real_val, sizeof(double), result); in fnv_64()
194 result = hash64((const void*)&int_val, sizeof(ulonglong), result); in fnv_64()
203 = hash64((const void*)&null_default, sizeof(null_default), result); in fnv_64()
/dports/databases/percona-pam-for-mysql/percona-server-5.6.51-91.0/plugin/percona-udf/
H A Dfnv_udf.cc132 ulonglong hash64(const void *buf, size_t len, ulonglong hval);
139 ulonglong hash64(const void *buf, size_t len, ulonglong hval) { in hash64() function
180 = hash64((const void*) args->args[i], args->lengths[i], result); in fnv_64()
187 = hash64((const void*)&real_val, sizeof(double), result); in fnv_64()
194 result = hash64((const void*)&int_val, sizeof(ulonglong), result); in fnv_64()
203 = hash64((const void*)&null_default, sizeof(null_default), result); in fnv_64()
/dports/databases/percona57-server/percona-server-5.7.36-39/plugin/percona-udf/
H A Dfnv_udf.cc132 ulonglong hash64(const void *buf, size_t len, ulonglong hval);
139 ulonglong hash64(const void *buf, size_t len, ulonglong hval) { in hash64() function
180 = hash64((const void*) args->args[i], args->lengths[i], result); in fnv_64()
187 = hash64((const void*)&real_val, sizeof(double), result); in fnv_64()
194 result = hash64((const void*)&int_val, sizeof(ulonglong), result); in fnv_64()
203 = hash64((const void*)&null_default, sizeof(null_default), result); in fnv_64()
/dports/databases/percona57-client/percona-server-5.7.36-39/plugin/percona-udf/
H A Dfnv_udf.cc132 ulonglong hash64(const void *buf, size_t len, ulonglong hval);
139 ulonglong hash64(const void *buf, size_t len, ulonglong hval) { in hash64() function
180 = hash64((const void*) args->args[i], args->lengths[i], result); in fnv_64()
187 = hash64((const void*)&real_val, sizeof(double), result); in fnv_64()
194 result = hash64((const void*)&int_val, sizeof(ulonglong), result); in fnv_64()
203 = hash64((const void*)&null_default, sizeof(null_default), result); in fnv_64()
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/plugin/percona-udf/
H A Dfnv_udf.cc132 ulonglong hash64(const void *buf, size_t len, ulonglong hval);
139 ulonglong hash64(const void *buf, size_t len, ulonglong hval) { in hash64() function
180 = hash64((const void*) args->args[i], args->lengths[i], result); in fnv_64()
187 = hash64((const void*)&real_val, sizeof(double), result); in fnv_64()
194 result = hash64((const void*)&int_val, sizeof(ulonglong), result); in fnv_64()
203 = hash64((const void*)&null_default, sizeof(null_default), result); in fnv_64()
/dports/math/calc/calc-2.14.0.14/
H A Dseed.c118 typedef USB64 hash64; typedef
124 typedef struct s_hash64 hash64; typedef
179 # define PRIVATE_64_BASIS ((hash64)(0xcbf29ce484222325ULL))
191 S_FUNC hash64
194 hash64 hval; /* current hash value */ in initial_private_hash64()
257 S_FUNC hash64
258 private_hash64_buf(hash64 hval, char *buf, unsigned len) in private_hash64_buf()
272 hval *= (hash64)1099511628211ULL; in private_hash64_buf()
275 hval ^= (hash64)(*buf); in private_hash64_buf()
456 hash64 prev_hash64_copy; /* copy if the previous hash value */ in pseudo_seed()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/security/sandbox/chromium/base/containers/
H A Dhash_tables.h203 uint64_t hash64 = (value1_64 << 32) | value2;
206 return static_cast<std::size_t>(hash64);
211 hash64 = hash64 * odd_random + shift_random;
213 hash64 >> (8 * (sizeof(uint64_t) - sizeof(std::size_t))));
238 uint64_t hash64 = product1 + product2 + product3 + product4;
241 return static_cast<std::size_t>(hash64);
246 hash64 = hash64 * odd_random + shift_random;
248 hash64 >> (8 * (sizeof(uint64_t) - sizeof(std::size_t))));
/dports/databases/redis-devel/redis-0e5b813/utils/
H A Dtracking_collisions.c45 uint64_t hash64; in sha1Hash() local
46 memcpy(&hash64,hash,sizeof(hash64)); in sha1Hash()
47 return hash64; in sha1Hash()
/dports/databases/redis6/redis-6.0.16/utils/
H A Dtracking_collisions.c45 uint64_t hash64; in sha1Hash() local
46 memcpy(&hash64,hash,sizeof(hash64)); in sha1Hash()
47 return hash64; in sha1Hash()
/dports/security/afl++/AFLplusplus-3.14c/test/unittests/
H A Dunit_hash.c52 u64 hash0 = hash64(bitmap, sizeof(bitmap), 0xa5b35705); in test_hash()
55 u64 hash1 = hash64(bitmap, sizeof(bitmap), 0xa5b35705); in test_hash()
60 assert_int_equal(hash0, hash64(bitmap, sizeof(bitmap), 0xa5b35705)); in test_hash()
63 assert_int_equal(hash1, hash64(bitmap, sizeof(bitmap), 0xa5b35705)); in test_hash()
/dports/net/openldap25-server/openldap-2.5.9/libraries/liblutil/
H A Dhash.c91 ctx->hash64 = HASH64_OFFSET; in lutil_HASH64Init()
109 h = ctx->hash64; in lutil_HASH64Update()
121 ctx->hash64 = h; in lutil_HASH64Update()
130 unsigned long long h = ctx->hash64; in lutil_HASH64Final()
/dports/net/openldap25-client/openldap-2.5.9/libraries/liblutil/
H A Dhash.c91 ctx->hash64 = HASH64_OFFSET; in lutil_HASH64Init()
109 h = ctx->hash64; in lutil_HASH64Update()
121 ctx->hash64 = h; in lutil_HASH64Update()
130 unsigned long long h = ctx->hash64; in lutil_HASH64Final()
/dports/net/openldap26-client/openldap-2.6.0/libraries/liblutil/
H A Dhash.c91 ctx->hash64 = HASH64_OFFSET; in lutil_HASH64Init()
109 h = ctx->hash64; in lutil_HASH64Update()
121 ctx->hash64 = h; in lutil_HASH64Update()
130 unsigned long long h = ctx->hash64; in lutil_HASH64Final()

12345678910>>...12