Used to fetch a naturally-aligned 32-bit word in little endian byte-order
| 206 | |
| 207 | // Used to fetch a naturally-aligned 32-bit word in little endian byte-order |
| 208 | static inline uint32_t LE_LOAD32(const uint8_t *p) { |
| 209 | return core::DecodeFixed32(reinterpret_cast<const char *>(p)); |
| 210 | } |
| 211 | |
| 212 | uint32 Extend(uint32 crc, const char *buf, size_t size) { |
| 213 | static bool can_accelerate = CanAccelerate(); |
nothing calls this directly
no test coverage detected