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

Function read_be64

src/commonlib/include/commonlib/endian.h:112–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110}
111
112static inline uint64_t read_be64(const void *src)
113{
114 uint64_t val;
115 val = read_be32(src);
116 val <<= 32;
117 val |= read_at_be32(src, sizeof(uint32_t));
118 return val;
119}
120
121static inline uint64_t read_at_be64(const void *src, size_t offset)
122{

Callers 2

read_at_be64Function · 0.85

Calls 2

read_be32Function · 0.85
read_at_be32Function · 0.85

Tested by

no test coverage detected