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

Function write_be16

src/commonlib/include/commonlib/endian.h:72–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70}
71
72static inline void write_be16(void *dest, uint16_t val)
73{
74 write_be8(dest, val >> 8);
75 write_at_be8(dest, val >> 0, sizeof(uint8_t));
76}
77
78static inline void write_at_be16(void *dest, uint16_t val, size_t offset)
79{

Callers 3

write_at_be16Function · 0.85
write_be32Function · 0.85
i2c_dev_read_at16Function · 0.85

Calls 2

write_be8Function · 0.85
write_at_be8Function · 0.85

Tested by

no test coverage detected