MCPcopy Create free account
hub / github.com/coreboot/coreboot / write_le32

Function write_le32

src/commonlib/include/commonlib/endian.h:203–207  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

201}
202
203static inline void write_le32(void *dest, uint32_t val)
204{
205 write_le16(dest, val >> 0);
206 write_at_le16(dest, val >> 16, sizeof(uint16_t));
207}
208
209static inline void write_at_le32(void *dest, uint32_t val, size_t offset)
210{

Callers 11

ser32Function · 0.85
fw_cfg_acpi_tablesFunction · 0.85
pe_relocateFunction · 0.85
te_relocateFunction · 0.85
relocate_patch_tableFunction · 0.85
relocate_remaining_itemsFunction · 0.85
write_at_le32Function · 0.85
write_le64Function · 0.85
write_memberFunction · 0.85
fill_header_offsetFunction · 0.85

Calls 2

write_le16Function · 0.85
write_at_le16Function · 0.85

Tested by

no test coverage detected