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

Function LZ4_readLE32

src/commonlib/bsd/lz4_wrapper.c:23–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21}
22
23static uint32_t LZ4_readLE32(const void *src)
24{
25 return *((const uint8_t *)src + 3) << 24
26 | *((const uint8_t *)src + 2) << 16
27 | *((const uint8_t *)src + 1) << 8
28 | *(const uint8_t *)src;
29}
30
31static void LZ4_copy8(void *dst, const void *src)
32{

Callers 1

ulz4fnFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected