(low, high, bits)
| 397724 | return (high >> (bits - 32))|0; |
| 397725 | } |
| 397726 | function _bitshift64Lshr(low, high, bits) { |
| 397727 | low = low|0; high = high|0; bits = bits|0; |
| 397728 | var ander = 0; |
| 397729 | if ((bits|0) < 32) { |
| 397730 | ander = ((1 << bits) - 1)|0; |
| 397731 | tempRet0 = high >>> bits; |
| 397732 | return (low >>> bits) | ((high&ander) << (32 - bits)); |
| 397733 | } |
| 397734 | tempRet0 = 0; |
| 397735 | return (high >>> (bits - 32))|0; |
| 397736 | } |
| 397737 | function _bitshift64Shl(low, high, bits) { |
| 397738 | low = low|0; high = high|0; bits = bits|0; |
| 397739 | var ander = 0; |
no outgoing calls
no test coverage detected
searching dependent graphs…