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

Method read64

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

Source from the content-addressed store, hash-verified

78 }
79
80 read64(offset) {
81 const m = mem;
82 if (isInteger(offset) && 0 <= offset && offset <= 0xffffffff) {
83 m._set_addr_direct(this);
84 } else {
85 add_and_set_addr(m, offset, this.lo, this.hi);
86 offset = 0;
87 }
88
89 return m.read64_at(offset);
90 }
91
92 readp(offset) {
93 const m = mem;

Callers 2

make_bufferFunction · 0.45
check_magic_atFunction · 0.45

Calls 3

add_and_set_addrFunction · 0.70
_set_addr_directMethod · 0.45
read64_atMethod · 0.45

Tested by

no test coverage detected