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

Function copyTempFloat

js/sql-debug.js:1477–1487  ·  view source on GitHub ↗
(ptr)

Source from the content-addressed store, hash-verified

1475var tempDoublePtr = STATICTOP; STATICTOP += 16;
1476
1477function copyTempFloat(ptr) { // functions, because inlining this code increases code size too much
1478
1479 HEAP8[tempDoublePtr] = HEAP8[ptr];
1480
1481 HEAP8[tempDoublePtr+1] = HEAP8[ptr+1];
1482
1483 HEAP8[tempDoublePtr+2] = HEAP8[ptr+2];
1484
1485 HEAP8[tempDoublePtr+3] = HEAP8[ptr+3];
1486
1487}
1488
1489function copyTempDouble(ptr) {
1490

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…