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

Function write_be32

src/commonlib/include/commonlib/endian.h:99–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97}
98
99static inline void write_be32(void *dest, uint32_t val)
100{
101 write_be16(dest, val >> 16);
102 write_at_be16(dest, val >> 0, sizeof(uint16_t));
103}
104
105static inline void write_at_be32(void *dest, uint32_t val, size_t offset)
106{

Callers 3

pi608gp_reg_writeFunction · 0.85
write_at_be32Function · 0.85
write_be64Function · 0.85

Calls 2

write_be16Function · 0.85
write_at_be16Function · 0.85

Tested by

no test coverage detected