(count: u8)
| 253 | /// Buckets inputs into either hit or not hit. |
| 254 | #[rustfmt::skip] |
| 255 | const fn bucket_any(count: u8) -> u8 { |
| 256 | match count { |
| 257 | 0 => 0, |
| 258 | _ => 1, |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | /// An implementation of the count classification scheme from AFL. Each edge count is bucketed such |
| 263 | /// that each bit in the output byte corresponds to a range of counts. |
nothing calls this directly
no outgoing calls
no test coverage detected