(low, high, unsigned)
| 404 | |
| 405 | |
| 406 | function makeBigInt(low, high, unsigned) { |
| 407 | return unsigned ? ((+((low>>>0)))+((+((high>>>0)))*4294967296.0)) : ((+((low>>>0)))+((+((high|0)))*4294967296.0)); |
| 408 | } |
| 409 | |
| 410 | function dynCall(sig, ptr, args) { |
| 411 | if (args && args.length) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…