| 399 | #define CC_HASH_SHIFT 8 |
| 400 | |
| 401 | static inline u_int |
| 402 | callout_hash(sbintime_t sbt) |
| 403 | { |
| 404 | |
| 405 | return (sbt >> (32 - CC_HASH_SHIFT)); |
| 406 | } |
| 407 | |
| 408 | static inline u_int |
| 409 | callout_get_bucket(sbintime_t sbt) |
no outgoing calls
no test coverage detected