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

Method write32

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

Source from the content-addressed store, hash-verified

126 }
127
128 write32(offset, value) {
129 const m = mem;
130 if (isInteger(offset) && 0 <= offset && offset <= 0xffffffff) {
131 m._set_addr_direct(this);
132 } else {
133 add_and_set_addr(m, offset, this.lo, this.hi);
134 offset = 0;
135 }
136
137 m.write32_at(offset, value);
138 }
139
140 write64(offset, value) {
141 const m = mem;

Callers 6

restoreMethod · 0.45
make_rdrFunction · 0.45
make_ssv_dataFunction · 0.45
make_arwFunction · 0.45
constructorMethod · 0.45
make_bufferFunction · 0.45

Calls 3

add_and_set_addrFunction · 0.70
_set_addr_directMethod · 0.45
write32_atMethod · 0.45

Tested by

no test coverage detected