MCPcopy Create free account
hub / github.com/sql-js/sql.js / makeBigInt

Function makeBigInt

js/sql-debug.js:406–408  ·  view source on GitHub ↗
(low, high, unsigned)

Source from the content-addressed store, hash-verified

404
405
406function makeBigInt(low, high, unsigned) {
407 return unsigned ? ((+((low>>>0)))+((+((high>>>0)))*4294967296.0)) : ((+((low>>>0)))+((+((high|0)))*4294967296.0));
408}
409
410function dynCall(sig, ptr, args) {
411 if (args && args.length) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…