(a, b, c, d)
| 397386 | function runPostSets() { |
| 397387 | } |
| 397388 | function _i64Add(a, b, c, d) { |
| 397389 | /* |
| 397390 | x = a + b*2^32 |
| 397391 | y = c + d*2^32 |
| 397392 | result = l + h*2^32 |
| 397393 | */ |
| 397394 | a = a|0; b = b|0; c = c|0; d = d|0; |
| 397395 | var l = 0, h = 0; |
| 397396 | l = (a + c)>>>0; |
| 397397 | h = (b + d + (((l>>>0) < (a>>>0))|0))>>>0; // Add carry from low word to high word on overflow. |
| 397398 | return ((tempRet0 = h,l|0)|0); |
| 397399 | } |
| 397400 | function _i64Subtract(a, b, c, d) { |
| 397401 | a = a|0; b = b|0; c = c|0; d = d|0; |
| 397402 | var l = 0, h = 0; |
no outgoing calls
no test coverage detected
searching dependent graphs…