(num, cnt)
| 8047 | |
| 8048 | |
| 8049 | function bitRotateLeft(num, cnt) { |
| 8050 | return num << cnt | num >>> 32 - cnt; |
| 8051 | } |
| 8052 | /* |
| 8053 | * These functions implement the four basic operations the algorithm uses. |
| 8054 | */ |
no outgoing calls
no test coverage detected
searching dependent graphs…