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

Function write_le16

src/commonlib/include/commonlib/endian.h:176–180  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174}
175
176static inline void write_le16(void *dest, uint16_t val)
177{
178 write_le8(dest, val >> 0);
179 write_at_le8(dest, val >> 8, sizeof(uint8_t));
180}
181
182static inline void write_at_le16(void *dest, uint16_t val, size_t offset)
183{

Callers 5

setup_ebdaFunction · 0.85
ser16Function · 0.85
write_at_le16Function · 0.85
write_le32Function · 0.85
write_memberFunction · 0.85

Calls 2

write_le8Function · 0.85
write_at_le8Function · 0.85

Tested by

no test coverage detected