MCPcopy Create free account
hub / github.com/GamerHack/GamerHack.github.io / read32

Method read32

g2all/900/module/mem.js:68–78  ·  view source on GitHub ↗
(offset)

Source from the content-addressed store, hash-verified

66 }
67
68 read32(offset) {
69 const m = mem;
70 if (isInteger(offset) && 0 <= offset && offset <= 0xffffffff) {
71 m._set_addr_direct(this);
72 } else {
73 add_and_set_addr(m, offset, this.lo, this.hi);
74 offset = 0;
75 }
76
77 return m.read32_at(offset);
78 }
79
80 read64(offset) {
81 const m = mem;

Callers 3

make_rdrFunction · 0.45
make_bufferFunction · 0.45
resolve_importFunction · 0.45

Calls 3

add_and_set_addrFunction · 0.70
_set_addr_directMethod · 0.45
read32_atMethod · 0.45

Tested by

no test coverage detected