estimate max possible value for (v1 & v2) */
| 390 | |
| 391 | /* estimate max possible value for (v1 & v2) */ |
| 392 | static uint64_t |
| 393 | eval_uand_max(uint64_t v1, uint64_t v2, size_t opsz) |
| 394 | { |
| 395 | v1 = eval_umax_bits(v1, opsz); |
| 396 | v2 = eval_umax_bits(v2, opsz); |
| 397 | return (v1 & v2); |
| 398 | } |
| 399 | |
| 400 | /* estimate max possible value for (v1 | v2) */ |
| 401 | static uint64_t |
no test coverage detected