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

Function write_le64

src/commonlib/include/commonlib/endian.h:232–236  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

230}
231
232static inline void write_le64(void *dest, uint64_t val)
233{
234 write_le32(dest, val >> 0);
235 write_at_le32(dest, val >> 32, sizeof(uint32_t));
236}
237
238static inline void write_at_le64(void *dest, uint64_t val, size_t offset)
239{

Callers 5

fw_cfg_acpi_tablesFunction · 0.85
pe_relocateFunction · 0.85
te_relocateFunction · 0.85
write_at_le64Function · 0.85
write_memberFunction · 0.85

Calls 2

write_le32Function · 0.85
write_at_le32Function · 0.85

Tested by

no test coverage detected