| 2479 | } |
| 2480 | |
| 2481 | static u_int |
| 2482 | cache_roundup_2(u_int val) |
| 2483 | { |
| 2484 | u_int res; |
| 2485 | |
| 2486 | for (res = 1; res <= val; res <<= 1) |
| 2487 | continue; |
| 2488 | |
| 2489 | return (res); |
| 2490 | } |
| 2491 | |
| 2492 | static struct nchashhead * |
| 2493 | nchinittbl(u_long elements, u_long *hashmask) |
no outgoing calls
no test coverage detected