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

Function write_at_le32

src/commonlib/include/commonlib/endian.h:209–214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

207}
208
209static inline void write_at_le32(void *dest, uint32_t val, size_t offset)
210{
211 uint8_t *d = dest;
212 d += offset;
213 write_le32(d, val);
214}
215
216static inline uint64_t read_le64(const void *src)
217{

Callers 3

obuf_write_le32Function · 0.85
write_le64Function · 0.85
fix_memberFunction · 0.85

Calls 1

write_le32Function · 0.85

Tested by

no test coverage detected