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

Function write_at_be16

src/commonlib/include/commonlib/endian.h:78–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78static inline void write_at_be16(void *dest, uint16_t val, size_t offset)
79{
80 uint8_t *d = dest;
81 d += offset;
82 write_be16(d, val);
83}
84
85static inline uint32_t read_be32(const void *src)
86{

Callers 2

obuf_write_be16Function · 0.85
write_be32Function · 0.85

Calls 1

write_be16Function · 0.85

Tested by

no test coverage detected