MCPcopy Create free account
hub / github.com/apache/brpc / fmix32

Function fmix32

test/bthread_dispatcher_unittest.cpp:199–206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

197}
198
199inline uint32_t fmix32 ( uint32_t h ) {
200 h ^= h >> 16;
201 h *= 0x85ebca6b;
202 h ^= h >> 13;
203 h *= 0xc2b2ae35;
204 h ^= h >> 16;
205 return h;
206}
207
208TEST(DispatcherTest, dispatch_tasks) {
209 client_stop = false;

Callers 1

TESTFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected