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

Function read_ble8

src/commonlib/include/commonlib/endian.h:12–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10/* Endian agnostic functions working on single byte. */
11
12static inline uint8_t read_ble8(const void *src)
13{
14 const volatile uint8_t *s = src;
15 return *s;
16}
17
18static inline uint8_t read_at_ble8(const void *src, size_t offset)
19{

Callers 3

read_at_ble8Function · 0.85
read_be8Function · 0.85
read_le8Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected