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

Method write64

g2all/900/module/mem.js:140–150  ·  view source on GitHub ↗
(offset, value)

Source from the content-addressed store, hash-verified

138 }
139
140 write64(offset, value) {
141 const m = mem;
142 if (isInteger(offset) && 0 <= offset && offset <= 0xffffffff) {
143 m._set_addr_direct(this);
144 } else {
145 add_and_set_addr(m, offset, this.lo, this.hi);
146 offset = 0;
147 }
148
149 m.write64_at(offset, value);
150 }
151}
152
153// expected:

Callers 12

read64Method · 0.45
set_addrMethod · 0.45
restoreMethod · 0.45
make_ssv_dataFunction · 0.45
constructorMethod · 0.45
constructorMethod · 0.45
runMethod · 0.45
constructorMethod · 0.45
constructorMethod · 0.45
runMethod · 0.45
constructorMethod · 0.45
make_bufferFunction · 0.45

Calls 3

add_and_set_addrFunction · 0.70
_set_addr_directMethod · 0.45
write64_atMethod · 0.45

Tested by

no test coverage detected