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

Function write_at_le16

src/commonlib/include/commonlib/endian.h:182–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180}
181
182static inline void write_at_le16(void *dest, uint16_t val, size_t offset)
183{
184 uint8_t *d = dest;
185 d += offset;
186 write_le16(d, val);
187}
188
189static inline uint32_t read_le32(const void *src)
190{

Callers 3

obuf_write_le16Function · 0.85
write_le32Function · 0.85
fix_memberFunction · 0.85

Calls 1

write_le16Function · 0.85

Tested by

no test coverage detected