MCPcopy
hub / github.com/copy/v86 / to_be32

Function to_be32

src/cpu.js:815–818  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

813 }
814
815 function to_be32(x)
816 {
817 return x << 24 | x << 8 & 0xFF0000 | x >> 8 & 0xFF00 | x >>> 24;
818 }
819
820 this.fw_pointer = 0;
821

Callers 1

cpu.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected