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

Method push_u32_le

crates/asm-to-binary/src/assembler/section.rs:68–70  ·  view source on GitHub ↗
(&mut self, word: u32)

Source from the content-addressed store, hash-verified

66 }
67
68 pub fn push_u32_le(&mut self, word: u32) {
69 self.bytes.extend_from_slice(&word.to_le_bytes());
70 }
71
72 pub fn push_u64_le(&mut self, word: u64) {
73 self.bytes.extend_from_slice(&word.to_le_bytes());

Callers 5

encodeFunction · 0.80
push_u32Function · 0.80
encode_callFunction · 0.80
encode_tailFunction · 0.80
encode_laFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected