(low, high, bits)
| 397713 | return (tempRet0 = HEAP32[$rem + 4 >> 2] | 0, HEAP32[$rem >> 2] | 0) | 0; |
| 397714 | } |
| 397715 | function _bitshift64Ashr(low, high, bits) { |
| 397716 | low = low|0; high = high|0; bits = bits|0; |
| 397717 | var ander = 0; |
| 397718 | if ((bits|0) < 32) { |
| 397719 | ander = ((1 << bits) - 1)|0; |
| 397720 | tempRet0 = high >> bits; |
| 397721 | return (low >>> bits) | ((high&ander) << (32 - bits)); |
| 397722 | } |
| 397723 | tempRet0 = (high|0) < 0 ? -1 : 0; |
| 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; |
no outgoing calls
no test coverage detected
searching dependent graphs…