MCPcopy Create free account
hub / github.com/LPC4/Full-Stack / write_byte

Method write_byte

crates/virtual-machine/src/memory/cache.rs:341–343  ·  view source on GitHub ↗
(&mut self, addr: u64, data: u8)

Source from the content-addressed store, hash-verified

339 }
340
341 fn write_word(&mut self, addr: u64, data: u32) -> Result<(), VmError> {
342 self.write_n(addr, data as u64, 4)
343 }
344
345 fn write_doubleword(&mut self, addr: u64, data: u64) -> Result<(), VmError> {
346 self.write_n(addr, data, 8)

Callers 3

flush_and_invalidateMethod · 0.45
resolve_lineMethod · 0.45
write_nMethod · 0.45

Calls 1

write_nMethod · 0.80

Tested by

no test coverage detected