Home
last modified time | relevance | path

Searched refs:FastHash (Results 1 – 25 of 205) sorted by relevance

123456789

/dports/databases/galera26/galera-release_26.4.10/galerautils/src/
H A Dgu_digest.hpp130 class FastHash class
157 FastHash::digest (const void* const in, size_t const size, uint8_t& out) in digest()
163 FastHash::digest (const void* const in, size_t const size, uint16_t& out) in digest()
181 FastHash::digest<uint8_t>(const void* const in, size_t const size) in digest()
187 FastHash::digest<uint16_t>(const void* const in, size_t const size) in digest()
193 FastHash::digest<uint32_t>(const void* const in, size_t const size) in digest()
199 FastHash::digest<uint64_t>(const void* const in, size_t const size) in digest()
205 FastHash::digest<int8_t>(const void* const in, size_t const size) in digest()
211 FastHash::digest<int16_t>(const void* const in, size_t const size) in digest()
217 FastHash::digest<int32_t>(const void* const in, size_t const size) in digest()
[all …]
/dports/databases/galera26/galera-release_26.4.10/galerautils/tests/
H A Dgu_digest_test.cpp153 gu::FastHash::digest (test_msg, 0, res128); in START_TEST()
156 gu::FastHash::digest (test_msg, 511, res128); in START_TEST()
159 gu::FastHash::digest (test_msg, 512, res128); in START_TEST()
162 gu::FastHash::digest (test_msg, 2011, res128); in START_TEST()
167 res64 = gu::FastHash::digest<uint64_t>(test_msg, 0); res64 = gu_le64(res64); in START_TEST()
170 res64 = gu::FastHash::digest<uint64_t>(test_msg,15); res64 = gu_le64(res64); in START_TEST()
173 res64 = gu::FastHash::digest<uint64_t>(test_msg,16); res64 = gu_le64(res64); in START_TEST()
176 res64 = gu::FastHash::digest<uint64_t>(test_msg,511); res64 =gu_le64(res64); in START_TEST()
179 res64 = gu::FastHash::digest<uint64_t>(test_msg,512); res64 =gu_le64(res64); in START_TEST()
182 res64 = gu::FastHash::digest<uint64_t>(test_msg,2011);res64 =gu_le64(res64); in START_TEST()
[all …]
/dports/databases/galera/galera-release_25.3.35/galerautils/tests/
H A Dgu_digest_test.cpp153 gu::FastHash::digest (test_msg, 0, res128); in START_TEST()
156 gu::FastHash::digest (test_msg, 511, res128); in START_TEST()
159 gu::FastHash::digest (test_msg, 512, res128); in START_TEST()
162 gu::FastHash::digest (test_msg, 2011, res128); in START_TEST()
167 res64 = gu::FastHash::digest<uint64_t>(test_msg, 0); res64 = gu_le64(res64); in START_TEST()
170 res64 = gu::FastHash::digest<uint64_t>(test_msg,15); res64 = gu_le64(res64); in START_TEST()
173 res64 = gu::FastHash::digest<uint64_t>(test_msg,16); res64 = gu_le64(res64); in START_TEST()
176 res64 = gu::FastHash::digest<uint64_t>(test_msg,511); res64 =gu_le64(res64); in START_TEST()
179 res64 = gu::FastHash::digest<uint64_t>(test_msg,512); res64 =gu_le64(res64); in START_TEST()
182 res64 = gu::FastHash::digest<uint64_t>(test_msg,2011);res64 =gu_le64(res64); in START_TEST()
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GL3Plus/src/GLSL/src/
H A DOgreGLSLProgramPipelineManager.cpp139 activeKey = FastHash((const char *)(&progID), sizeof(GLuint), activeKey); in getActiveProgramPipeline()
144 activeKey = FastHash((const char *)(&progID), sizeof(GLuint), activeKey); in getActiveProgramPipeline()
149 activeKey = FastHash((const char *)(&progID), sizeof(GLuint), activeKey); in getActiveProgramPipeline()
154 activeKey = FastHash((const char *)(&progID), sizeof(GLuint), activeKey); in getActiveProgramPipeline()
159 activeKey = FastHash((const char *)(&progID), sizeof(GLuint), activeKey); in getActiveProgramPipeline()
164 activeKey = FastHash((const char *)(&progID), sizeof(GLuint), activeKey); in getActiveProgramPipeline()
H A DOgreGLSLLinkProgramManager.cpp89 activeKey = FastHash((const char *)(&progID), sizeof(GLuint), activeKey); in getActiveLinkProgram()
94 activeKey = FastHash((const char *)(&progID), sizeof(GLuint), activeKey); in getActiveLinkProgram()
99 activeKey = FastHash((const char *)(&progID), sizeof(GLuint), activeKey); in getActiveLinkProgram()
104 activeKey = FastHash((const char *)(&progID), sizeof(GLuint), activeKey); in getActiveLinkProgram()
109 activeKey = FastHash((const char *)(&progID), sizeof(GLuint), activeKey); in getActiveLinkProgram()
114 activeKey = FastHash((const char *)(&progID), sizeof(GLuint), activeKey); in getActiveLinkProgram()
/dports/databases/galera/galera-release_25.3.35/galerautils/src/
H A Dgu_digest.hpp130 class FastHash class
160 FastHash::digest (const void* const in, size_t size, uint8_t& out) in digest()
166 FastHash::digest (const void* const in, size_t size, uint16_t& out) in digest()
172 FastHash::digest (const void* const in, size_t size, uint32_t& out) in digest()
178 FastHash::digest (const void* const in, size_t size, uint64_t& out) in digest()
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/hash/
H A Dhash_unittest.cc82 TEST(HashTest, FastHash) { in TEST() argument
85 EXPECT_EQ(FastHash(s), FastHash(kEmptyString)); in TEST()
H A Dhash.h39 BASE_EXPORT size_t FastHash(base::span<const uint8_t> data);
40 inline size_t FastHash(StringPiece str) { in FastHash() function
41 return FastHash(as_bytes(make_span(str))); in FastHash()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/base/hash/
H A Dhash_unittest.cc82 TEST(HashTest, FastHash) { in TEST() argument
85 EXPECT_EQ(FastHash(s), FastHash(kEmptyString)); in TEST()
H A Dhash.h40 BASE_EXPORT size_t FastHash(base::span<const uint8_t> data);
41 inline size_t FastHash(StringPiece str) { in FastHash() function
42 return FastHash(as_bytes(make_span(str))); in FastHash()
/dports/www/firefox-esr/firefox-91.8.0/security/sandbox/chromium/base/hash/
H A Dhash.h40 BASE_EXPORT size_t FastHash(base::span<const uint8_t> data);
41 inline size_t FastHash(StringPiece str) { in FastHash() function
42 return FastHash(as_bytes(make_span(str))); in FastHash()
/dports/www/firefox/firefox-99.0/security/sandbox/chromium/base/hash/
H A Dhash.h40 BASE_EXPORT size_t FastHash(base::span<const uint8_t> data);
41 inline size_t FastHash(StringPiece str) { in FastHash() function
42 return FastHash(as_bytes(make_span(str))); in FastHash()
/dports/mail/thunderbird/thunderbird-91.8.0/security/sandbox/chromium/base/hash/
H A Dhash.h40 BASE_EXPORT size_t FastHash(base::span<const uint8_t> data);
41 inline size_t FastHash(StringPiece str) { in FastHash() function
42 return FastHash(as_bytes(make_span(str))); in FastHash()
/dports/graphics/ogre3d/ogre-1.11.6/OgreMain/include/
H A DOgreGpuProgramManager.h218 return isMicrocodeAvailableInCache(FastHash(name.c_str(), name.size())); in isMicrocodeAvailableInCache()
230 return getMicrocodeFromCache(FastHash(name.c_str(), name.size())); in getMicrocodeFromCache()
248 addMicrocodeToCache(FastHash(name.c_str(), name.size()), microcode); in addMicrocodeToCache()
260 removeMicrocodeFromCache(FastHash(name.c_str(), name.size())); in removeMicrocodeFromCache()
/dports/net/goreplay/goreplay-1.2.0/vendor/github.com/google/gopacket/gopacket-1.1.18/
H A Dbenchmark_test.go174 e.FastHash()
180 e.FastHash()
186 e.FastHash()
192 e.FastHash()
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/google/gopacket/
H A Dbenchmark_test.go174 e.FastHash()
180 e.FastHash()
186 e.FastHash()
192 e.FastHash()
/dports/misc/fq/fq-0.0.2/vendor/github.com/google/gopacket/
H A Dbenchmark_test.go174 e.FastHash()
180 e.FastHash()
186 e.FastHash()
192 e.FastHash()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/google/gopacket/
H A Dbenchmark_test.go174 e.FastHash()
180 e.FastHash()
186 e.FastHash()
192 e.FastHash()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/browsing_data/content/
H A Dcanonical_cookie_hash.h21 size_t FastHash(const net::CanonicalCookie& cookie);
25 return FastHash(cookie); in operator()
/dports/www/chromium-legacy/chromium-88.0.4324.182/cc/paint/
H A Dskottie_wrapper.cc30 id_(base::FastHash(data)) {} in SkottieWrapper()
37 id_(base::FastHash(raw_data_)) {} in SkottieWrapper()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/cc/paint/
H A Dskottie_wrapper.cc30 id_(base::FastHash(data)) {} in SkottieWrapper()
37 id_(base::FastHash(raw_data_)) {} in SkottieWrapper()
/dports/www/chromium-legacy/chromium-88.0.4324.182/android_webview/browser/
H A Dicon_helper.cc123 MissingFaviconURLHash url_hash = base::FastHash(icon_url.spec()); in MarkUnableToDownloadFavicon()
128 MissingFaviconURLHash url_hash = base::FastHash(icon_url.spec()); in WasUnableToDownloadFavicon()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/feed/content/
H A Dfeed_offline_host.cc179 auto iter = url_hash_to_id_.find(base::FastHash(url)); in GetOfflineId()
292 url_hash_to_id_[base::FastHash(url)] = id; in CacheOfflinePageUrlAndId()
296 url_hash_to_id_.erase(base::FastHash(url)); in EvictOfflinePageUrl()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/feed/content/
H A Dfeed_offline_host.cc179 auto iter = url_hash_to_id_.find(base::FastHash(url)); in GetOfflineId()
285 url_hash_to_id_[base::FastHash(url)] = id; in CacheOfflinePageUrlAndId()
289 url_hash_to_id_.erase(base::FastHash(url)); in EvictOfflinePageUrl()
/dports/www/chromium-legacy/chromium-88.0.4324.182/testing/libfuzzer/fuzzers/
H A Dhash_fuzzer.cc14 base::FastHash(base::make_span(data, size)); in LLVMFuzzerTestOneInput()

123456789