| 379 | } |
| 380 | |
| 381 | static uint64_t |
| 382 | eval_umax_bits(uint64_t v, size_t opsz) |
| 383 | { |
| 384 | if (v == 0) |
| 385 | return 0; |
| 386 | |
| 387 | v = rte_clz64(v); |
| 388 | return RTE_LEN2MASK(opsz - v, uint64_t); |
| 389 | } |
| 390 | |
| 391 | /* estimate max possible value for (v1 & v2) */ |
| 392 | static uint64_t |
no test coverage detected