| 222 | } |
| 223 | |
| 224 | inline uint32_t fmix32 ( uint32_t h ) { |
| 225 | h ^= h >> 16; |
| 226 | h *= 0x85ebca6b; |
| 227 | h ^= h >> 13; |
| 228 | h *= 0xc2b2ae35; |
| 229 | h ^= h >> 16; |
| 230 | return h; |
| 231 | } |
| 232 | |
| 233 | // Disable temporarily due to epoll's bug. The bug is fixed by |
| 234 | // a kernel patch that lots of machines currently don't have |
no outgoing calls
no test coverage detected