| 952 | */ |
| 953 | |
| 954 | static npy_intp |
| 955 | compute_min_run_short(npy_intp num) |
| 956 | { |
| 957 | npy_intp r = 0; |
| 958 | |
| 959 | while (16 < num) { |
| 960 | r |= num & 1; |
| 961 | num >>= 1; |
| 962 | } |
| 963 | |
| 964 | return num + r; |
| 965 | } |
| 966 | |
| 967 | /* |
| 968 | ***************************************************************************** |
no outgoing calls
no test coverage detected